with open(‘./matmul.py‘) as f:
try:
while True:
line=next(f)
print(line)
except StopIteration:
pass
报错:
IOError: [Errno 2] No such file or directory: ‘./matmul.py‘
解决:
os.open是针对当前工作目录中的文件进行打开操作的,需要修改工作目录之后再运行这个方法
import os
print os.getcwd()#显示当前工作目录
os.chdir(‘the_path_of_the_file_whitch_you_want_to_open.txt‘) #修改当前工作目录
文件名要带后缀
时间: 2024-09-29 22:08:41