码迷,mamicode.com
首页 > 编程语言 > 详细

python第二天

时间:2017-07-28 22:08:28      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:alt   div   display   code   lap   pytho   技术   open   input   

条件判断   具体代码如下图:注意格式缩进          

技术分享
age=3
if age>=18:
    print(adult)
elif age>=6:
    print(teenager)
else:
    print(kid)
View Code

 

 input()函数表示读取输入的数据,案例如下

技术分享
birth=input(birth: )
s=int(birth)#把str类型数据转换为int型
if s<2000:
    print(00前)
else:
    print(00后)
View Code

 

python第二天

标签:alt   div   display   code   lap   pytho   技术   open   input   

原文地址:http://www.cnblogs.com/09120912zhang/p/7252572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!