上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: 模块导入import pypy from lib.test(也就是文件路径) import py (文件名)r = __import__('lib.test.py(文件路径)',formlist = True(要声明才能找到)) sys模块'''添加路径'''sys.path.append('d:\e') '''用列表的方式返还当前文件的路径''' print(sys.argv) '... 阅读全文
posted @ 2016-12-27 18:36 200ML 阅读(158) 评论(0) 推荐(0) 编辑
摘要: '''re.match() 从头匹配 如果第一个字符串是h 就会匹配到, 反之则不会。''' ''' 不分组 只有group 得到结果''' origin = 'hello alex bcd alex lge alex acd 19' r = re.match('h\w+',origin) print(r.group()) #获取匹配到的所有结果 print(r.groups()) #获取模型... 阅读全文
posted @ 2016-12-27 10:18 200ML 阅读(275) 评论(1) 推荐(0) 编辑
摘要: import fnmatch, os import re import pickle #写入注册信息 def inmation(user,pwd,XinMing,phone,balance=0,consumption=0): name_user = {'name':user,'pwd':pwd,'XinMing':XinMing,'phone':phone,'balance':bala... 阅读全文
posted @ 2016-12-26 11:51 200ML 阅读(215) 评论(0) 推荐(0) 编辑
摘要: import fnmatch, os import re yy = input('') def edd(user_name): def allFiles(root, patterns = '*', single_level = False, yield_folders = False): patterns = patterns.split(';') fo... 阅读全文
posted @ 2016-12-25 20:36 200ML 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 打印当前目录所有文件名 import fnmatch, os def allFiles(root, patterns = '*', single_level = False, yield_folders = False): patterns = patterns.split(';') for path, subdirs, files in os.walk(root): ... 阅读全文
posted @ 2016-12-25 19:30 200ML 阅读(2674) 评论(0) 推荐(0) 编辑
摘要: import sys import time # val = sys.stdin.readline()[:-1] # print(val)] # print('1') # time.sleep(1) # print('2') n = '·' for i in range(26): n += '·' sys.stdout.write('\r') sys.stdout.wri... 阅读全文
posted @ 2016-12-25 11:33 200ML 阅读(129) 评论(0) 推荐(0) 编辑
摘要: import sys for i in sys.path: print (i) 查看导入路径 sys.path.append("D:") 添加D盘导入路径 from lib import re 在指定文件夹 找指定模块 from lib import re as bbb 給导入进来的模块重新命名 Python\Python36\Lib\site-... 阅读全文
posted @ 2016-12-24 17:24 200ML 阅读(89) 评论(0) 推荐(0) 编辑
摘要: import re ''' 函数: findall() search() match() re.compile() re.split() p = re.compile(r'\d+') p.split('one1two2three3four4') sub() re.sub("g.t","have",'i get a, i got b , i gut c') 全部替换 ... 阅读全文
posted @ 2016-12-23 20:28 200ML 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 装饰器: 先来个形象比方 内裤可以用来遮羞,但是到了冬天它没法为我们防风御寒, 聪明的人们发明了长裤,有了长裤后宝宝再也不冷了, 装饰器就像我们这里说的长裤,在不影响内裤作用的前提下,给我们的身子提供了保暖的功效。 def num(funk): def num_3(): print('穿') print('秋') print('裤\n... 阅读全文
posted @ 2016-12-23 10:54 200ML 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 省市 dict_1 = { '湖南':{ '长沙':['岳麓','天心','开服','南站'], '株洲':['荷塘','河西'], }, '广东':{ '广州':['天河','白云','番禺'], '深圳':['保安','福田','罗湖'], ... 阅读全文
posted @ 2016-12-23 09:14 200ML 阅读(255) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页