python的int float if...else
# 字符串 string 单引号 ‘ ’ 双引号 “ ”-包含的
app = 'dongt woory'
外面单引号里面可以双引号,外面双引号,里面也可以单引号
app ='你是真的“好看”吗'
app =“你是真的’好看‘吗”
#int 整数
age= 18
#float 浮点数
sore= 183.333
#条件的判断 true 和 Flase
#优秀 良好 及格 不及格
score = input('请输入成绩:') #1、input接收到的都是字符串 2、int
score = int(score) #类型转换,把变量转成int类型
if score >= 90: # > < >= <= == !=
print('优秀')
elif score<90 and score>=80 :
print('良好')
elif score>=60 and score<80:
print('及格')
else:
print('不及格')
number = 10
# if number % 2 == 0:
# print('是偶数')
# else:
# print('是奇数')