python入门小知识2
Posted thumbupking
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门小知识2相关的知识,希望对你有一定的参考价值。
if语句小程序示例
1、
user_name = "wang"
password = 123
inp_user_name = input(">>:")
inp_password = int(input (">>:"))
if inp_user_name == user_name and inp_password == password:
print("pass")
else:
print("fail")
2、
score = int( input(">>:")) #将input字符串转换为整形,并赋值给score
if score > 90:
print("A") #print前加四个空格
elif score > 80:
print("B")
elif score > 70:
print("C")
elif score > 60:
print("D")
else:
print("Fail")
以上是关于python入门小知识2的主要内容,如果未能解决你的问题,请参考以下文章