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 ...
随机推荐
- 04 前端之BOM与DOM
目录 前端之BOM与DOM BOM与DOM操作 BOM操作 前端之BOM与DOM BOM与DOM操作 BOM 浏览器对象模型>>>:使用js操作浏览器 DOM 文档对象模型>& ...
- 《PHP程序员面试笔试宝典》——如何应对面试官的“激将法”语言?
如何巧妙地回答面试官的问题? 本文摘自<PHP程序员面试笔试宝典> "激将法"是面试官用以淘汰求职者的一种惯用方法,它是指面试官采用怀疑.尖锐或咄咄逼人的交流方式来对求 ...
- Java ClassLoader 学习笔记
参考 Java类加载器(ClassLoader)
- RTP包中timestamp的间隔问题
概述 近期在和同事调试G729的编解码库时碰到一个语音质量的问题,问题产生的原因和RTP包中的时间戳设置有关,特此记录下来. 问题现象,1001和1002账号注册在fs,媒体设置为G729并通过fs中 ...
- windows server 2016 2019修改远程端口操作
一.修改3389远程端口 1,按"win+r"快捷键,在对话框中输入regedit 2, 找到路径 \HKEY_LOCAL_MACHINE\SYSTEM\CurrentContro ...
- 【转】浅谈 Integer 类
突然发现自己对Integer i = 10;这种语法不太明白,于是乎有了这篇文章,那么在讲解 Integer 之前,我们先看下面这段代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 ...
- web安全之快速反弹 POST 请求
在 CTF Web 的基础题中,经常出现一类题型:在 HTTP 响应头获取了一段有效期很短的 key 值后,需要将经过处理后的 key 值快速 POST 给服务器,若 key 值还在有效期内,则服务器 ...
- 【C# 线程】Windows系统下常见的7种I/O模型 之Overlapped I/O模型
overview 这个字符到底是什么含义呢?其实它的意思就是当程序在等待设备操作的时候,可以继续往下做而不必阻塞到那个地方等待设备操作的返回,这就造成了程序运行和设备操作时间上的重叠. Overla ...
- ubuntu系统黑屏,只有一个光标
使用easyBCD删除原ubuntu引导,重建 添加新条目 引导选择900M左右那个选项
- 60天shell脚本计划-10/12-渐入佳境
--作者:飞翔的小胖猪 --创建时间:2021年3月13日 --修改时间:2021年3月17日 说明 每日上传更新一个shell脚本,周期为60天.如有需求的读者可根据自己实际情况选用合适的脚本,也可 ...