本文主要是介绍python 程序跑完提示,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
声音
import winsound
duration = 5000 # 持续时间以毫秒为单位,这里是5秒
freq = 440 # Hz
winsound.Beep(freq, duration) #叮~~~
import winsound
try:
k=i+l #这里明显不对
except:
print('出错啦,快来看看我!')
duration = 5000
freq = 440
winsound.Beep(freq, duration)
邮箱
import yagmail
print('hello world')
# 登录你的邮箱
yag = yagmail.SMTP(user = 'xxxxxxxx@qq.com', password = 'your password', host = 'smtp.qq.com')
# 发送邮件
yag.send(to = ['your receive e-mail'], subject = '主题', contents = ['内容','C:\1.txt'])
这篇关于python 程序跑完提示的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!