JS 实现页面在浏览器中全屏显示(F11效果)

日期:2022-05-19 12:25:40 作者:磊落不羁 栏目:常用函数 评论(0)
<!DOCTYPE html> <html>     <head>         <meta charset="UTF-8">         <title></title>     </head>   ...

python 判断程序是否运行函数

日期:2022-05-14 08:14:57 作者:磊落不羁 栏目:常用函数 评论(0)
import psutil as psutil def is_process_running(process_name):     pl = psutil.pids()     for pid in pl:         if psutil.Process(pid).name() == process_n...