摘要:
for循环 game_list=['吃','吃饭','吃饭饭','吃饭饭饭','吃烦烦烦放','23','33','77',] # 0 1 2 3 4 5 6 7 index=0 while index<8: print(game_list[index]) index+=1 吃 吃饭 吃饭饭 吃饭饭 阅读全文
摘要:
## while循环 基本语法:while 条件为true 代码块 while 1: egon_age = 73 age = input('请输入你猜的年龄》》》') age = int(age) if age == egon_age: print('猜对了') elif age > egon_ag 阅读全文
摘要:
if判断 name=input('请输入您的名字:') if name=='xy': print('我喜欢xy') if name=='yx': print('我不喜欢yx') 请输入您的名字: yx 我不喜欢yx if else name=input('请输入你的名字') if name=='ni 阅读全文
摘要:
运算符 算数运算符 1+1 2 1-1 0 1*1 1 2%1 0 5//2 2 比较运算符 1>1 False 1<2 True 1>=1 True 1==1 True 1!=2 True 赋值运算符 x=1 print(x) 1 逻辑运算符 1.and 2.or 3.not 1==1 and 2 阅读全文