包容裙子

文章
6
资源
0
加入时间
2年10月21天

python的if语句语法_python中的if语句语法

if 条件:条件体执行语句注意对齐方式a=6b=3if b>a:print(a)print("你是老司机")打印结果为“你是老司机”s= 'man'if s=='woman':print("发糖了")else:print('伙计过来抽烟了')打印结果为:伙计过来抽烟了gender=input("请输入你的老司机代号")print("您输入的代码是{0}".format(greder))if...