您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息
免费发信息
三六零分类信息网 > 阿坝分类信息网,免费分类信息发布

Python简单实现控制电脑的方法

2024/4/25 12:26:06发布3次查看
这篇文章主要介绍了python简单实现控制电脑的方法,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
这篇文章主要介绍了python简单实现控制电脑的方法,涉及python基于os及win32api等模块调用系统命令操作电脑的相关实现技巧,需要的朋友可以参考下
本文实例讲述了python简单实现控制电脑的方法。分享给大家供大家参考,具体如下:
1、windows 下,cmd的一些命令:
dir:列出当前的所有文件
time:打印当前的时间
tree:列出当前目录下的子结构
在cmd中进入了某种模式,退出可以尝试以下命令:q 、exit()、ctrl+c、ctrl+z
运行程序:在cmd里面直接输入程序名称。如:notepad、calc
按tab键可以补全名字
在一个文件夹下,想快速打开cmd: 按住shift键,在鼠标点击右键,可以看见命令。
想在cmd中一个文件,但输入名称后显示文件或命令不存在。可以把文件目录加入path环境。
关机:shutdown -s -t +3600 -c 关机啦!            #3600为时间,即过1小时后关机,并且在屏幕上显示“关机啦!”
取消关机命令:shutdown -a
2、python控制cmd
2.1、os.system('xxx')  xxx为在cmd中执行的命令
2.2、 subprocess.popen('xxx',shell=true, stdout=subprocess.pipe, stderr=subprocess.stdout) 
xxx为在cmd中执行的命令,其他不用改。
例子:
# -*- coding: utf-8 -*- import os os.system("ping www.baidu.com")
# -*- coding: utf-8 -*- import subprocess a=subprocess.popen("ping www.baidu.com",shell=true, stdout=subprocess.pipe, stderr=subprocess.stdout) b=a.stdout.readlines() for i in b: print i
os.system是一步一步打印出来,而 subprocess.popen则一次性返回最终结果。
在目录下下建一个文件 conf.txt。在文件里面输入 ping www.baidu.com
# -*- coding: utf-8 -*- import os import time # # chra = "ping www.baidu.com" # os.system(chra) # # import subprocess # # a = subprocess.popen(chra, shell=true, stdout=subprocess.pipe, stderr=subprocess.stdout) # b = a.stdout.readlines() # for i in b: # print i while true: f = open('conf.txt', 'r') content = f.read() os.system(content) time.sleep(5)
会看见程序每5秒运行 ping一次。改动conf.txt里面的内容为dir ,发现程序不再ping,而是打印文件夹的文件名称。
3、python模块 win32api
3.1、win32api.beep
beep(freq, dur) freq代表频率,dur代表持续的时间。
# -*- coding: utf-8 -*- import win32api win32api.beep(6000,3000)
会持续三秒听见吱吱的响声
3.2、win32api.messagebox
messagebox(hwnd, message , title , style , language ) 会弹出一个窗口
hwnd : int 从哪个位置弹出窗口。一般为0
message : 窗口内容
title : 标题名字
style=win32con.mb_ok : int,the style of the message box.
language=win32api.makelangid(lang_neutral,sublang_default) : int,the language id to use.
# -*- coding: utf-8 -*- import win32api import time #win32api.beep(6000,3000) while true: f = open('conf.txt', 'r') content = f.read().split('#') if content[0] != 'o': win32api.messagebox(0, content[1] , content[2] ) time.sleep(5) #conf.txt中的内容: ”1 # hi ,beautiful girl# how are you!”
弹出一个显示名称为“how are you!” ,内容为“ hi ,beautiful girl”的窗口。
3.3、win32api.shellexecute
int = shellexecute(hwnd, op , file , params , dir , bshow ) 执行程序
hwnd : intint 从哪个位置弹出窗口。一般为0
op : string 操作符。the operation to perform. may be "open", "print", or none, which defaults to "open".
file : string 文件的地址。the name of the file to open.
params : string。可以为空。the parameters to pass, if the file name contains an executable. should be none for a document file.
dir : string。可以为空。the initial directory for the application.
bshow : int 。1 表示打开窗口;0 表示不打开。specifies whether the application is shown when it is opened. if the lpszfile parameter specifies a document file, this parameter is zero.
# -*- coding: utf-8 -*- import win32api win32api.shellexecute(0,'open',r'c:\users\administrator\pictures\toutiao\1.jpg','','',1)
运行程序就会打开这张图片。
相关推荐:
python实现百度语音识别api
用python实现web端用户登录和注册功能
以上就是python简单实现控制电脑的方法的详细内容。
阿坝分类信息网,免费分类信息发布

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录