os模块乱码
import osos.system('notepad.txt')
#os.system('calc.exe')
错误:'notepad.txt' is not recognized as an internal or external command,
operable program or batch file.
开始运行时,提示一堆方框内带问号的乱码
后来将区域设置里面勾选了:Bate版:使用Unicode UTF-8提供全球语言支持(U),就出现上面的错误了
另外 勾选后重启会对原有的一些文本造成什么影响吗? os.system('notepad.txt')
这是什么鬼
要是打开记事本
os.system('notepad')或者os.system('notepad.exe')
要是打开文本文件用open函数 os.system('notepad.txt')
这样写
os.system('notepad') 哈哈,我™写错了
页:
[1]