摘要: product_list=[ ('Iphone',5800), ('Mac Pro',9800), ('Bike',800), ('Watch',10600), ('Coffee',31), ('Python Book',49) ] shopping_list=[] salary=input('Input your salary:') if sal... 阅读全文
posted @ 2018-01-03 09:37 耐烦不急 阅读(189) 评论(0) 推荐(0) 编辑
摘要: #元组只能统计和获取下表,不能插入之类的.元组和列表差不多,也是存一组数,只是它一旦创建,便不能再修改,所以又叫只读列表 names=('QiZhiguang','LiuGuannan','LiangTianqi','XiongLinyu') print(names.count('QiZhiguang')) print(names.index('LiuGuannan')) 阅读全文
posted @ 2018-01-03 09:36 耐烦不急 阅读(178) 评论(0) 推荐(0) 编辑
摘要: a=['a','d','f','g'] for i in enumerate(a): print(i) #enumerate 把列表的下表以元组的形式取出来 #结果 # (0, 'a') # (1, 'd') # (2, 'f') # (3, 'g') 阅读全文
posted @ 2018-01-03 09:30 耐烦不急 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 补充: 阅读全文
posted @ 2018-01-03 09:29 耐烦不急 阅读(207) 评论(0) 推荐(0) 编辑
摘要: import copy person=['name',['saving',100]] #3种浅copy方式 p1=copy.copy(person) p2=person[:] p3=list(person) print(p1) print(p2) print(p3) #作用举例 两人共用账户 p1[0]="齐志光" p2[0]="梁天琪" p1[1][1]=50 print(p1) print(... 阅读全文
posted @ 2018-01-03 09:29 耐烦不急 阅读(142) 评论(0) 推荐(0) 编辑
摘要: # result=值1 if 条件 else 值2 如果条件为真:result=值1,否则result=值2. a,b,c=1,3,5 d=a if b>c else c print(d) 阅读全文
posted @ 2018-01-03 09:27 耐烦不急 阅读(132) 评论(0) 推荐(0) 编辑
摘要: import python_5_password 阅读全文
posted @ 2018-01-03 09:26 耐烦不急 阅读(155) 评论(0) 推荐(0) 编辑
摘要: #//取整除,返回商的整数部分 print(9//2) print(10/3.3) print(10//3.0) #与!=都为不等于 #and 与 例(a and b) #or 或 #not非 #in ,not in判断在与不在 a=[1,2,3,4] if 1 not in a:print("sdfdsf") if 31 not in a:print('qwert') #is ... 阅读全文
posted @ 2018-01-03 09:26 耐烦不急 阅读(217) 评论(0) 推荐(0) 编辑
摘要: import os #1. os.system('dir') #2 cmd_res=os.system('dir')#执行命令不保存结果 print("-------",cmd_res)#返回0,代表这个操作是成功的 #3 cmd_red=os.popen('dir').read()#执行命令且保存结果 print(">>>>>>>>",cmd_red) #4在当前目录下创建一个目录 os.mk... 阅读全文
posted @ 2018-01-03 09:25 耐烦不急 阅读(130) 评论(0) 推荐(0) 编辑
摘要: import sys #1 print(sys.path)#打印环境变量 #2 print(sys.argv)#打印相对路径 print(sys.argv[2])#在cmd命令窗口运行本文件 阅读全文
posted @ 2018-01-03 09:24 耐烦不急 阅读(119) 评论(0) 推荐(0) 编辑
摘要: for i in range(5): print('-----------',i) for j in range(5): print(j) if j>2: break####结束当前循环 阅读全文
posted @ 2018-01-03 09:23 耐烦不急 阅读(127) 评论(0) 推荐(0) 编辑
摘要: for i in range(9): if i<3: print("loop",i) else: continue#跳出本次循环,继续到下一循环 print('hehe...') 阅读全文
posted @ 2018-01-03 09:22 耐烦不急 阅读(145) 评论(0) 推荐(0) 编辑
摘要: age_of_oldboy=56 count=0 for count in range(3): guess_age=int(input('guess age:')) if guess_age==age_of_oldboy: print('yes,you got it.') break#结束整个循环 elif guess_age>age_of... 阅读全文
posted @ 2018-01-03 09:21 耐烦不急 阅读(250) 评论(0) 推荐(0) 编辑
摘要: age_of_oldboy=56 count=0 while count<3: guess_age=int(input("guess age:")) if guess_age==age_of_oldboy: print("yes,you got it.") break#结束整个循环 elif guess_age<age_of_oldboy:... 阅读全文
posted @ 2018-01-03 09:21 耐烦不急 阅读(191) 评论(0) 推荐(0) 编辑
摘要: #1 for i in range(10):#默认从0开始,步长为1 print("loop",i) #2 for i in range(0,10,1):#步长为1 print("loop",i) #3 for i in range(0,10,2):#步长为2 print("loop",i) # 3 for i in range(0,10,3):#步长为3 pri... 阅读全文
posted @ 2018-01-03 09:20 耐烦不急 阅读(155) 评论(0) 推荐(0) 编辑
摘要: #python3和2都可以 #方法1 age_of_oldboy=56 count=0 while True: if count==3: break guess_age=int(input('guess age:')) if guess_age==age_of_oldboy: print('yes,you got it.') ... 阅读全文
posted @ 2018-01-03 09:19 耐烦不急 阅读(464) 评论(0) 推荐(0) 编辑
摘要: count=0 while True: print('count:',count) count+=1 # count=count+1 if count==500: break#结束整个循环 阅读全文
posted @ 2018-01-03 09:09 耐烦不急 阅读(121) 评论(0) 推荐(0) 编辑
摘要: _username='qi' _password='abc123' username=input("username:") password=input('password:') if _username==username and _password==password: print("welcome user {name}...".format(name=username)) els... 阅读全文
posted @ 2018-01-03 09:08 耐烦不急 阅读(194) 评论(0) 推荐(0) 编辑
摘要: #1、python2中raw_input与python3中的input是相同的,python2中也有input但是别用(不好用,忘记它) #密码是明文的 username=input("username:") password=input('password:') print(username,password) #2、密码变成密文 import getpass username=input(... 阅读全文
posted @ 2018-01-03 09:07 耐烦不急 阅读(320) 评论(0) 推荐(0) 编辑