发布时间:2019-06-30 15:27:19编辑:auto阅读(1946)
做为 Apple Store App 独立开发者,你要搞限时促销,为你的应用生成200个激活码(或者优惠券),并将生成的激活码(或者优惠券)保存到 MySQL 关系型数据库中。
def getrand():
while True:
a=random.randint(48,122)
if a<=57 or (a>=65 and a<=90) or (a>=97 and a<=122):
break
return a
if __name__=='__main__':
import random
import pymysql
array=[]
for k in range (200):
rand=''
for i in range(6):
rand=rand+chr(getrand())
array.append(rand)
conn=pymysql.connect(host='127.0.0.1',port=3306,user='root',passwd='',db='mysql')
cur=conn.cursor()
cur.execute('create table if not exists juan (ma varchar(20))')
cur.executemany("insert into juan values(%s)",array)
cur.close()
conn.commit()
conn.close()使用的是python3.5版本的。。。
上一篇: 【Python】07、python内置数
下一篇: python购物车功能实现
52231
52152
42298
39169
33667
30621
29323
24286
24172
22542
126°
129°
140°
134°
181°
343°
388°
389°
364°
405°