上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 45 下一页
摘要: # Author:Adminone __author__ = "Alex Li" data = { '北京':{ "昌平":{ "沙河":["oldboy","test"], "天通苑":["链家地产","我爱我家"] }, "朝阳":{ "望京":["奔驰","陌陌"], "国贸":{"CICC" 阅读全文
posted @ 2021-06-05 22:35 flytoyou 阅读(23) 评论(0) 推荐(0) 编辑
摘要: # Author:Adminone import copy #names = "ZhangYang Guyun Xiangpeng XuLiangChen" names = ["ZhangYang", "Guyun","XiangPeng","XuLiangchen"] #names = ["4Zh 阅读全文
posted @ 2021-06-05 22:33 flytoyou 阅读(29) 评论(0) 推荐(0) 编辑
摘要: # Author:Adminone import copy person=['name',['saving',100]] ''' #浅copy实现方式 p1=copy.copy(person) #完全切片 p2=person[:] #浅copy p3=list(person) ''' #夫妻俩 p1 阅读全文
posted @ 2021-06-05 22:30 flytoyou 阅读(16) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # _*_coding:utf-8_*_ name = input("name:") #raw_input 2.x input 3.x #input 2.x = age = int(input("age:")) #integer print(type(ag 阅读全文
posted @ 2021-06-05 22:24 flytoyou 阅读(27) 评论(0) 推荐(0) 编辑
摘要: # Author:Adminone age_of_oldboy = 56 for i in range(0,3): guess_age = int(input("guess age:") ) if guess_age == age_of_oldboy : print("yes, you got it 阅读全文
posted @ 2021-06-05 22:21 flytoyou 阅读(17) 评论(0) 推荐(0) 编辑
摘要: # Author:Adminone ''' count = 0 while True: print("count:",count) count = count +1 #count +=1 if count == 1000: break ''' ''' for i in range(0,10): if 阅读全文
posted @ 2021-06-05 22:18 flytoyou 阅读(22) 评论(0) 推荐(0) 编辑
摘要: guess任性玩.py # Author:Adminone age_of_oldboy = 56 count = 0 while count <3: guess_age = int(input("guess age:") ) if guess_age == age_of_oldboy : print 阅读全文
posted @ 2021-06-05 22:16 flytoyou 阅读(21) 评论(0) 推荐(0) 编辑
摘要: password.py # Author:Adminone import getpass _username = 'alex' _password = 'abc123' username = input("username:") #password = getpass.getpass("passwo 阅读全文
posted @ 2021-06-05 22:12 flytoyou 阅读(44) 评论(0) 推荐(0) 编辑
摘要: sys_mod.py # Author:Adminone ''' import sys print(sys.path) #打印环境变量 print(sys.argv) #打印脚本绝对路径['E:/python S14/day1/sys_mod.py'] print(sys.argv[2]) ''' 阅读全文
posted @ 2021-06-05 22:10 flytoyou 阅读(53) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-04-07 15:49 flytoyou 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 45 下一页