gpt4 book ai didi

python - 用 python 中的命令行/shell 版本替换将文件加载到列表

转载 作者:行者123 更新时间:2023-11-28 21:27:13 25 4
gpt4 key购买 nike

您好,有没有办法从命令行加载文件

所以我可以输入 python test.py data.txt

代替

data = [line.strip() for line in open("/home/user/data.txt",  "rb").readlines()]

最佳答案

import sys
data = [line.strip() for line in open(sys.argv[1], "rb")]

顺便说一句,不需要 .readlines()

关于python - 用 python 中的命令行/shell 版本替换将文件加载到列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11445971/

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