标签:结果 false mamicode python inpu 返回 连接 some span
the_world_is_flat=False if the_world_is_flat: print ("Be careful not to fall off!") else: print ("No!")
运行结果:
print(2+2) print(8/5) print(8/2) # //忽略小数部分
运行结果:
除法永远返回浮点数
print(5**2) #乘方 5的2次方
运行结果:25
width=10 height=20 area=width*height print(area)
运行结果:200
print(‘C:\some\name‘) print(r‘C:\some\name‘)
运行结果:
str="pyt" print(str+"hon")
运行结果:
num=float(input("请输入一个数字")) if num>=0: if num==0: print ("零") else: print ("正数") else: print ("负数")
运行结果:
标签:结果 false mamicode python inpu 返回 连接 some span
原文地址:https://www.cnblogs.com/zrn-php/p/11996830.html