python练习册 每天一个小程序 第0001题
1 # -*-coding:utf-8-*-
2 __author__ = 'Deen'
3 '''
4 题目描述:
5 做为 Apple Store App 独立开发者,你要搞限时促销,为你的应用生成激活码(或者优惠券),使用 Python 如何生成 200 个激活码(或者优惠券)?
6 '''
7 '''
8 import random
9
10
11 '''
12 '''
13 import string
14 import random
15
16
17 def coupon_creator(digit):
18 coupon = ''
19 for word in range(digit):
20 coupon += random.choice(string.ascii_uppercase + string.digits)
21 return coupon
22
23
24 def two_hundred_coupons():
25 data = ''
26 count = 1
27 for count in range(200):
28 digit = 12
29 count += 1
30 data += 'coupon no.' + str(count) + ' ' + coupon_creator(digit) + '\n'
31
32 return data
33
34
35 coupondata = open('coupondata.txt', 'w')
36 coupondata.write(two_hundred_coupons())
37 '''
38 '''
39 >>> import string
40 >>> string.ascii_letters
41 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
42 >>> string.ascii_lowercase
43 'abcdefghijklmnopqrstuvwxyz'
44 >>> string.ascii_uppercase
45 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
46 >>> string.digits
47 '0123456789'
48 >>> string.hexdigits
49 '0123456789abcdefABCDEF'
50 >>> string.letters
51 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
52 >>> string.lowercase
53 'abcdefghijklmnopqrstuvwxyz'
54 >>> string.uppercase
55 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
56 >>> string.octdigits
57 '01234567'
58 >>> string.punctuation
59 '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'
60 >>> string.printable
61 '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r\x0b\x0c'
62 >>> string.whitespace
63
64 '''
65 '''
66 random.random()用于生成
67 用于生成一个指定范围内的随机符点数,两个参数其中一个是上限,一个是下限。如果a > b,则生成随机数
68 ?
69 1
70 n: a <= n <= b。如果 a <b, 则 b <= n <= a。
71 ?
72 1
73 2
74 3
75 4
76 5
77 6
78 print random.uniform(10, 20)
79 print random.uniform(20, 10)
80 #----
81 #18.7356606526
82 #12.5798298022
83 random.randint
84 用于生成一个指定范围内的整数。其中参数a是下限,参数b是上限,Python生成随机数
85 ?
86 1
87 2
88 3
89 print random.randint(12, 20) #生成的随机数n: 12 <= n <= 20
90 print random.randint(20, 20) #结果永远是20
91 #print random.randint(20, 10) #该语句是错误的。
92 下限必须小于上限。
93 random.randrange
94 从指定范围内,按指定基数递增的集合中 ,这篇文章就是对python生成随机数的应用程序的部分介绍。
95 随机整数:
96 >>> import random
97 >>> random.randint(0,99)
98 21
99 随机选取0到100间的偶数:
100 >>> import random
101 >>> random.randrange(0, 101, 2)
102 42
103 随机浮点数:
104 >>> import random
105 >>> random.random()
106 0.85415370477785668
107 >>> random.uniform(1, 10)
108 5.4221167969800881
109 随机字符:
110 >>> import random
111 >>> random.choice('abcdefg&#%^*f')
112 'd'
113 多个字符中选取特定数量的字符:
114 >>> import random
115 random.sample('abcdefghij',3)
116 ['a', 'd', 'b']
117 多个字符中选取特定数量的字符组成新字符串:
118 >>> import random
119 >>> import string
120 >>> string.join(random.sample(['a','b','c','d','e','f','g','h','i','j'], 3)).r
121 eplace(" ","")
122 'fih'
123 随机选取字符串:
124 >>> import random
125 >>> random.choice ( ['apple', 'pear', 'peach', 'orange', 'lemon'] )
126 'lemon'
127 洗牌:
128 >>> import random
129 >>> items = [1, 2, 3, 4, 5, 6]
130 >>> random.shuffle(items)
131 >>> items
132 [3, 2, 5, 6, 4, 1]
133 '''
134
135 # 改进
136
137 import string
138 import random
139
140 # n为生成的个数,length为生成的长度
141 def get_poll_codes(n, length):
142 poll_codes = list()
143 for i in range(n):
144 poll_code = ''
145 for j in range(length):
146 poll_code += random.choice(string.uppercase + string.digits)
147 if poll_code in poll_codes:
148 pass
149 else:
150 poll_codes.append(poll_code)
151 n = 0
152 with open('poll_codes.txt', 'w') as fp:
153 for i in poll_codes:
154 n += 1
155 fp.write(str(n) + ':' + i + '\n')
156 fp.close()
157
158
159 if __name__ == '__main__':
160 get_poll_codes(200, 10)
python练习册 每天一个小程序 第0001题的更多相关文章
- python练习册 每天一个小程序 第0013题
# -*-coding:utf-8-*- ''' 题目描述: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-) 地址: http://tieba.baidu.com/p/21 ...
- python练习册 每天一个小程序 第0007题
1 # -*-coding:utf-8-*- 2 __author__ = 'Deen' 3 ''' 4 题目描述: 5 有个目录,里面是你自己写过的程序,统计一下你写过多少行代码.包括空行和注释,但 ...
- python练习册 每天一个小程序 第0000题
PIL库学习链接:http://blog.csdn.net/column/details/pythonpil.html?&page=1 1 #-*-coding:utf-8-*- 2 __au ...
- python练习册 每天一个小程序 第0010题
# -*-coding:utf-8-*- ''' 题目描述: 使用 Python 生成类似于下图中的字母验证码图片 思路: 运用PIL库加random 随机字母进行生成 ''' import rand ...
- python练习册 每天一个小程序 第0009题
1 ''' 2 题目描述: 3 找出一个html文件中所有的url 4 5 思路 : 6 利用正则表达式进行匹配 7 8 ''' 9 10 11 import re 12 13 14 with ope ...
- python练习册 每天一个小程序 第0008题
1 # -*-coding:utf-8-*- 2 __author__ = 'Deen' 3 ''' 4 题目描述: 5 一个HTML文件,找出里面的正文. 6 7 思路: 8 利用Beautiful ...
- python练习册 每天一个小程序 第0006题
1 # -*-coding:utf-8-*- 2 __author__ = 'Deen' 3 ''' 4 题目描述: 5 你有一个目录,放了你一个月的日记,都是 txt,为了避免分词的问题,假设内容都 ...
- python练习册 每天一个小程序 第0005题
1 # -*-coding:utf-8-*- 2 __author__ = 'Deen' 3 ''' 4 题目说明: 你有一个目录,装了很多照片,把它们的尺寸变成都不大于 iPhone5 分辨率的大小 ...
- python练习册 每天一个小程序 第0012题
# -*-coding:utf-8-*- def test(content): text = content flag = 0 with open('filtered_words.txt') as f ...
随机推荐
- 如何通过opensea-js获取OpenSea的数据
OpenSea作为NFT最大的交易平台,随着NFT的火热之后,热度也是出现翻天覆地的变化.作为开发人员肯定好奇有没有可以与opensea交互的包来开发相关的工具或者快速获取opensea的数据.别急, ...
- 5个不常提及的HTML技巧
2021年你需要知道的HTML标签和属性 Web开发人员都在广泛的使用HTML.无论你使用什么框架或者选择哪个后端语言,框架在变,但是HTML始终如一.尽管被广泛使用,但还是有一些标签或者属性是大部分 ...
- Spring Boot-开启第一步
Spring Boot开发的目的是为了简化Spring应用的开发,使用Spring Boot可以零配置开启一个Spring应用.这得益于Spring Boot中的自动配置组件,如果开发者觉得默认的配置 ...
- Spring系列14:IoC容器的扩展点
Spring系列14:IoC容器的扩展点 回顾 知识需要成体系地学习,本系列文章前后有关联,建议按照顺序阅读.上一篇我们详细介绍了Spring Bean的生命周期和丰富的扩展点,没有阅读的强烈建议先阅 ...
- Solution -「CF 917D」Stranger Trees
\(\mathcal{Description}\) Link. 给定一棵包含 \(n\) 个点的有标号树,求与这棵树重合恰好 \(0,1,\cdots,n-1\) 条边的树的个数,对 \(10 ...
- if,for,while,do...while
顺序结构 java的基本结构就是顺序结构,除法特别指明,否则就按照顺序一句一句执行 顺序结构是最简单的算法结构 语句与语句之间,框与框之间是按照从上到下的顺序进行的,它是由若干依次执行的处理步骤组成, ...
- SpringBoot 自定义内容协商策略 configureContentNegotiation
在自定义的config配置类中,重写configureContentNegotiation方法 @Bean public WebMvcConfigurer webMvcConfigurer(){ re ...
- SSM整合时页面出现$ is not defined
$ is not defined ,有以下几种可能: 1.没有导入jQuery的jar包 2.jQuery的jar包放进了WEB-INF里,jQuery的jar包最好放在WebContent下,跟WE ...
- 【程序员的实用工具推荐】 Mac 效率神器 Alfred
Alfred 是一款功能非常强大,能有效提升 Mac 电脑使用效率的神器.可以说有了 Alfred 你就基本上可以脱离鼠标实现各种操作.相比 Mac 自带的聚焦搜索,完全可以称得上拥有碾压性的优势. ...
- Stroke
// A simple blur shader, weighted on alphauniform sampler2D texture;void main(){ float radius = 0 ...