待解决
Awake2015
这个作者很懒,什么都没留下…
展开
-
不确定的问题 2015-8-12
# 5-12 系统限制。写一段脚本确认一下python所能处理的整形,长整形,浮点数和复数的范围。def pythonLimit(): import sys print (sys.maxint) print (-sys.maxint-1) print (sys.float_info) print (sys.long_info)网上找的,原创 2015-08-12 22:39:14 · 440 阅读 · 0 评论 -
Python HAIL CAESAR (凯撒密码) 1
其中一段代码为shifts = [(i, random.randint(0, 25)) for i in range(len(s)) if s[i-1] == ' ']random.randint(0,25) 是0~25取一个整数X FOR IF 可以用作一行原创 2015-06-10 22:35:23 · 1142 阅读 · 0 评论 -
Python HAIL CAESAR (凯撒密码) 3
# 6.00x Problem Set 6## Part 1 - HAIL CAESAR!import stringimport randomWORDLIST_FILENAME = "E:/python/2015-6-10/words.txt"# -----------------------------------# Helper code原创 2015-06-16 23:05:33 · 1133 阅读 · 0 评论