摘要: import re # re 存在5种使用方式 #1. macth #2.search #3.findall #4.split #5 sub re.match('^chen', 'chenhua123').group() #加.group() 查看查找的内容 re.search('chen+a$', 阅读全文
posted @ 2018-05-23 20:33 python我的最爱 阅读(207) 评论(0) 推荐(0) 编辑
摘要: import hashlib #hashilib 模块 m = hashlib.md5() m.update('hello 天王盖地虎'.encode(encoding = 'utf-8)) m.hexdigest() # 显示密码 m = hashlib.sha256() m.update(b'1 阅读全文
posted @ 2018-05-23 17:07 python我的最爱 阅读(149) 评论(0) 推荐(0) 编辑
摘要: # configparser 生成 import configparser config = configparser.ConfigParser() config[DEFUALT] = {'ServerAliveInterval':45, 'Compreassion':'yes', 'Comprea 阅读全文
posted @ 2018-05-23 16:33 python我的最爱 阅读(211) 评论(0) 推荐(0) 编辑
摘要: #创建xml import xml.etree.ElementTree as ET new_xml = ET.Element('namelist') personinfo = ET.SubElement(new_xml, 'personinfo', attrib = {'enroll' :yes}) 阅读全文
posted @ 2018-05-23 14:14 python我的最爱 阅读(207) 评论(0) 推荐(0) 编辑
摘要: import shutil import os f1 = open('本节笔记.txt', encoding = 'utf-8') f2 = open('笔记2', 'w', encoding = 'utf-8') 1.shutil.copyfileobj(f1, f2) #拷贝文件内容 2.shu 阅读全文
posted @ 2018-05-23 13:22 python我的最爱 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 一种字典形式储存数据的方式 import datetime, shelve d = shelve.open('shelve_test.txt') info = {'age':22, 'job':'it') name = ['alex', 'rain', 'test'] d['name'] = nam 阅读全文
posted @ 2018-05-23 12:30 python我的最爱 阅读(132) 评论(0) 推荐(0) 编辑
摘要: import random random.random() #生成0-1的随机浮点数 random.randint(1, 10) #生成1-10的整数 random.randrange(1,10) #生成1-9的整数 random.choice('hello') #随机选择里面的数 ,可以是元组,列 阅读全文
posted @ 2018-05-23 12:18 python我的最爱 阅读(124) 评论(0) 推荐(0) 编辑
摘要: import os 1.os.getcwd() # 获得当前文件路径 2.os.chdir() # 改变当前目录 3.os.curdir # . 表示当前目录 4.os.pardir # 表示上一级目录 5.os.makedirs(r’C:\a\b\c\d‘) #递归的创建文件 6.os.remov 阅读全文
posted @ 2018-05-23 00:05 python我的最爱 阅读(132) 评论(0) 推荐(0) 编辑