1. 首页
  2. 数据库
  3. 其它
  4. 妙用itchat! python实现久坐提醒功能

妙用itchat! python实现久坐提醒功能

上传者: 2021-02-01 00:24:30上传 PDF文件 52.19KB 热度 20次
本文实例为大家分享了python久坐提醒的具体实现代码,供大家参考,具体内容如下 #!/usr/bin/envy python3 #-*- coding:utf-8 -*- import itchat import datetime, os, platform,time def timerfun(sched_time) : flag = 0 while True: now = datetime.datetime.now() if now > sched_time and now < sched_time + datetime.timedelta(seconds=1) : #
用户评论