摘要: 1 #!/usr/bin/env python 2 import re 3 def f1(arg): 4 5 return 1 6 7 origin = "1 - 2 * ( ( 60 - 30 + ( -40.0 / 5 ) * ( 9 - 2 * 5 / 3 + 7 / 3 * 99 / 4 * 2998 + 10 * 568 / 14 )) - ( - 4 * 3... 阅读全文
posted @ 2017-02-13 20:35 失落的黎明 阅读(1047) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-02-13 20:28 失落的黎明 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 最常用的匹配语法 阅读全文
posted @ 2017-02-13 20:15 失落的黎明 阅读(2001) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-02-13 20:10 失落的黎明 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-02-13 20:02 失落的黎明 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 import re 3 r = "aasa da.5a5dfgfda ada" 4 ret = re.findall('a',r) 5 print(ret)#1.查找全部a 6 ret = re.findall('^a',r) 7 print(ret)# 2.^ 查找开头 8 ret = re.findall('a$',r) ... 阅读全文
posted @ 2017-02-13 18:42 失落的黎明 阅读(784) 评论(0) 推荐(0) 编辑
摘要: 结果C:\Python35\python3.exe F:/Python/笔记1/a1.py3['asa', 'a']akda Process finished with exit code 0 阅读全文
posted @ 2017-02-13 18:31 失落的黎明 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 r = round(3.6) 3 #四舍五入 4 print(r) C:\Python35\python3.exe F:/Python/2day/c7.py 4 Process finished with exit code 0 阅读全文
posted @ 2017-02-09 17:41 失落的黎明 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 i = pow(2,5) 3 #求一个数的n次幂 4 print(i) C:\Python35\python3.exe F:/Python/2day/c6.py 32 Process finished with exit code 0 阅读全文
posted @ 2017-02-09 17:37 失落的黎明 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 obj = iter([11,22,33,44]) 3 #iter 创建一个可以被迭代的对象 4 print(obj) 5 r1 = next(obj) 6 print(r1) 7 8 结果:C:\Python35\python3.exe F:/Python/2day/c4.py 11 Process finished wi... 阅读全文
posted @ 2017-02-09 17:22 失落的黎明 阅读(154) 评论(0) 推荐(0) 编辑