摘要:
#简短地生成随机密码,包括大小写字母、数字,可以指定密码长度 from random import choice import string #python3中为string.ascii_letters,而python2下则可以使用string.letters和string.ascii_letters def GenPassword(length=8,chars=string.ascii_... 阅读全文
摘要:
1.安装环境 yum -y install gcc zlib-devel make yum -y install readline-devel#安装此包解决在Linux系统中 Python交互模式下方向键出现乱码的问题 yum -y install sqlite-devel #安装此包解决系统中多版本python3 导入sqlite3报错问题 2.下载python版本 wget http:/... 阅读全文