随笔分类 -  python实战

摘要:用于生成一个指定范围内的随机符点数,两个参数其中一个是上限,一个是下限。 import random print random.uniform(10, 20) print random.uniform(20, 10) # #18.7356606526 #12.5798298022 random.ra 阅读全文
posted @ 2017-08-02 15:53 AAA五金批发王建军 阅读(305) 评论(0) 推荐(0) 编辑
摘要:#设置密码输入,显示为****** import msvcrt,sys def pwd_input(): chars = [] while True: try: newChar = msvcrt.getch().decode(encoding="utf-8") except: ... 阅读全文
posted @ 2017-08-02 11:08 AAA五金批发王建军 阅读(1884) 评论(0) 推荐(0) 编辑
摘要:import smtplib from email.mime.text import MIMEText from email.header import Header import time #密文输入密码 from getpass import getpass def email(): try: #这两个参数必须要,不然就会出现554的错误,不然少参数 ... 阅读全文
posted @ 2017-08-01 16:29 AAA五金批发王建军 阅读(749) 评论(0) 推荐(0) 编辑
摘要:import smtplib from email.mime.text import MIMEText from email.header import Header import time def email(): #发送邮箱服务器 smtpserver = "smtp.163.com" #发送邮箱的账号/密码 user= "我的邮箱@163.com" ... 阅读全文
posted @ 2017-08-01 10:17 AAA五金批发王建军 阅读(2435) 评论(1) 推荐(0) 编辑