gpt4 book ai didi

python - 为什么语法 "main.py < input.txt"不起作用

转载 作者:行者123 更新时间:2023-12-04 07:47:00 25 4
gpt4 key购买 nike

使用命令行,我的程序将接受 .txt 输入。
我的教授展示的语法是:python main.py < input.txt但我得到了错误
IndexError: list index out of range
我用来打开文件的代码:

import.sys

if len(sys.argv[1]) <= 0:
print("Please input a file path")
exit(-1)

with open(sys.argv[1], 'r') as input_file:
# loops to create new "arg" array for every new line
for line in input_file.readlines():
我怎样才能解决这个问题?

最佳答案

python main.py < input.txt将“input.txt”的内容通过管道传输到 Python 进程上的 stdin,您可以通过 sys.stdin 读取此管道内容

import sys

for line in sys.stdin:
print(line)

关于python - 为什么语法 "main.py < input.txt"不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67155308/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com