python数据类型,判断,循环

一、数据类型

python的变量无需声明,可以直接赋值各种类型的数据。

name = '张三'
age = 20
num = 12.5
print (name,age,num)

张三 20 12.5

二、if判断

num = int(input('num:')) #类型转换
if num == 10: #if 条件 :
print('ok') #子代码缩进
elif num > 10:
print('big')
else:
print('small')

 三、循环

count = 0
while True: #True是循环条件
    print (count) #缩进
    count +=1
for i in range(0,10,2): #从0开始,每运行一次循环,跳2个数字,到10为止
    print (i)
    #break 
else: #如果跳出循环则运行else代码块
    print('no')
posted @ 2017-04-21 09:41  友谅  阅读(238)  评论(0编辑  收藏  举报