标签:成绩 查询 必须 ima input oop 加油 语句 col
if 4>5: print("你该去幼儿园好好学习学习了") print("不错啊,知道啊")
if 4>5: print("你该去幼儿园好好学习学习了") else: print("不错啊,知道啊")
num = input ("请输入你猜的数字:") #input里边的都是字符型,字符型必须引号引起来 if num == "1": print ("你请我吃饭") elif num == "2": print ("我请你吃饭") elif num == "3": print ("你说谁请就谁请") else: print ("我说谁请就谁请")
score = int (input("请输入成绩:")) if score >= 90: print("A") elif score >= 80: print("B") elif score >= 70: print("C") elif score >= 60: print("D") else: print("你没有及格,明年继续加油吧!")
注:这里将字符型转化成了整型,所以后边的不带引号。只有数字的字符型才可以转化成整型。
name = input("请输入名字:") age = input("请输入年龄:") if name == "小禹哥": if age == "22": print("你找对了") else: print("你确定你没记错?") else: print("对不起,你找的人查询不到,请到别处查找")
输出1到100(当出现False时循环停止)
count = 1 flag = True #标志位 while flag: print(count) count = count + 1 if count > 100 : flag = False
count = 1 while count <= 100: print(count) count = count + 1
count = 1 sum = 0 while count <= 100: sum = sum + count count = count + 1 print(sum)
第三种
count = 0 while count <= 100 : count += 1 if count > 5 and count <95: continue print("loop",count) print(".......out of while loop.....")
标签:成绩 查询 必须 ima input oop 加油 语句 col
原文地址:https://www.cnblogs.com/xiao-yuge/p/9580032.html