标签:alt div display code lap pytho 技术 open input
条件判断 具体代码如下图:注意格式缩进
age=3 if age>=18: print(‘adult‘) elif age>=6: print(‘teenager‘) else: print(‘kid‘)
input()函数表示读取输入的数据,案例如下
birth=input(‘birth: ‘) s=int(birth)#把str类型数据转换为int型 if s<2000: print(‘00前‘) else: print(‘00后‘)
标签:alt div display code lap pytho 技术 open input
原文地址:http://www.cnblogs.com/09120912zhang/p/7252572.html