摘要: import time while True # print(11111) # time,sleep(1) # break list =[1 , 2 , 3, 4, 5] #list1-len=(list1) #5 #while list1-len>0: # list1 _len-= 1 # # print(list1_len) #4 3 2 1 0 # # print(list1[list1_l 阅读全文
posted @ 2019-09-25 09:03 迷宫一般 阅读(125) 评论(0) 推荐(0)
摘要: print('安徽财贸学院很厉害') # 定义变量: # name:变量名 # =: 用于绑定变量名与变量值 # '吕连杰': 变量的值 name = '吕连杰' age = 83 sex = 'female' # 调用变量 print(name, age, sex) ''' python8大数据类型: - 整型(整数): int 18 ... 阅读全文
posted @ 2019-09-23 19:41 迷宫一般 阅读(86) 评论(0) 推荐(0)