python怎么用代码打开某路径的下的文件,例如打开桌面的“123.txt”文件?还有怎么双击打开桌面某个app?
展开全部
# 打开桌面上的test.txt文件
file=open(r"C:\Users\admin\Desktop\test.txt","r").read()()
print(file)
# 打开QQ
import os
file=os.system(r'"D:\Program Files (x86)\Tencent\QQ\Bin\QQScLauncher.exe"')
print(file)
注意路径要是你电脑上的路径
file=open(r"C:\Users\admin\Desktop\test.txt","r").read()()
print(file)
# 打开QQ
import os
file=os.system(r'"D:\Program Files (x86)\Tencent\QQ\Bin\QQScLauncher.exe"')
print(file)
注意路径要是你电脑上的路径
追问
您的答案好用,非常感谢您!!!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询