我正在尝试学习sys.argv并从命令行获取参数。但是当我尝试打开文件时,它说:
“ IOError:[Errno 2]没有这样的文件或目录:'inputfile.txt'”
这是我的代码:
import sys, re,
file1 = open(sys.argv[1], "r")
file1 = file1.read()
print(file1)
这是我要在终端中输入的内容:
python /Users/vincentdang/Desktop/Assignment1/hey.py inputfile.txt
有人可以给我一些提示吗?