发布时间:2019-06-30 15:27:19编辑:auto阅读(1777)
做为 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购物车功能实现
50463
49755
40351
37380
31798
28660
27593
22379
22374
20680
445°
1055°
853°
796°
1041°
914°
1530°
2866°
2563°
1967°