作业一:三迁举办选“帅气男孩”,评委打分可以输入打分,要求分数必须大于5,小于10: 方法一 i = 1 while i < 6: score = input("请%d评委打分:"%i) if int(score) > 5 and int(score)<10: print("感谢您的打分") else: print("不在有效范围内") continue i += 1 作业 1 答案 1 方法二 import re dic =
1. count=1 while count<11: fen=input('请第{}个评委打分' .format( count)) if int(fen) >5 and int(fen) <10: print("评分有效") else: continue count+=1 2. lst=['西游记','水浒传','红楼梦','笑傲江湖'] dic={} for i in lst: fen=int(input("给{}打分:".format(i)))