摘要: 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) 编辑