作业比赛编号 : 1614 - Python8班寒假打卡任务3
本次为最后一次打卡任务,加油完成哦~胜利就在前方
本任务完成时间 2月19日到2月25日
上次任务答案:
第一题:
a = int(input())
b = int(input())
c = int(input())
if a == b == c:
print('N')
else:
if b == c:
print('W')
else:
print('L')
第二题:
S=input()
a=S[0]+S[-1]
print(a)
第三题:
s = input()
ans = 10
for i in range(1, 4): #找“1”,“2”,“3”中出现次数最少的
if s.count(str(i)) < ans:
ans = s.count(str(i))
print(ans)
第四题:
s = input()
a = s.split(' ')
print(a[3])
第五题:
s = input()
a = s.count('F') #小蓝没进的数量
b = (s.count('A') + a) // 3 #机器人没进的数量
if a < b: #谁失误少谁赢
print('W')
elif a > b:
print('L')
else:
print('D')