摘要:
``` import os,re 代码所在位置 FILE_PATH = './' def analyze_code(codefilesource): ''' 打开一个py文件统计其中的代码行数,包括空格和注释 返回该文件总行数,注释函数,空行输 :param codefilesource: :ret
阅读全文
posted @ 2017-09-05 22:54
神秘藏宝室
阅读(313)
推荐(0)
编辑
摘要:
```
bytes object b = b"example" str object s = "example" #str to bytes bytes(s, encoding = "utf8") #bytes to str str(b, encoding = "utf-8") #an alternative method ...
阅读全文
posted @ 2017-09-05 22:52
神秘藏宝室
阅读(191)
推荐(0)
编辑
摘要:
```
try: from PIL import Image, ImageDraw, ImageFont, ImageEnhance
except ImportError: import Image, ImageDraw, ImageFont, ImageEnhance import os myPath = './srcimg/'
outPath = './destimg/'
...
阅读全文
posted @ 2017-09-05 21:00
神秘藏宝室
阅读(243)
推荐(0)
编辑
摘要:
```
#use python3.6
import re
from collections import Counter
FILESOURCE = './abc.txt' def getMostCommonWord(artlclefilesource): pattern = r"""[A-Za-z]+|\$?\d+%?$""" with open(artlclefilesourc...
阅读全文
posted @ 2017-09-05 17:31
神秘藏宝室
阅读(468)
推荐(0)
编辑
摘要:
```
import string
import random #激活码中的字符和数字
field = string.ascii_letters + string.digits #获得四个字母和数字的随即组合
def getRandom(): return "".join(random.sample(field,4)) #生成的每个激活码中有几组
def concatenate(gr...
阅读全文
posted @ 2017-09-05 17:09
神秘藏宝室
阅读(284)
推荐(0)
编辑
摘要:
``` encoding=utf 8 ''''' pil处理图片,验证,处理 大小,格式 过滤 压缩,截图,转换 图片库最好用Pillow 还有一个测试图片img.jpg, 一个log图片,一个字体文件 ''' 图片的基本参数获取 try: from PIL import Image, ImageD
阅读全文
posted @ 2017-09-05 13:58
神秘藏宝室
阅读(842)
推荐(0)
编辑
摘要:
在python2下用pil,而在python3下可以安装pillow 功能,在图片上加上几个字
阅读全文
posted @ 2017-09-05 13:31
神秘藏宝室
阅读(1005)
推荐(0)
编辑