我想从 python 命令行读取文件
如何在命令行中从 python 读取文件?假设我有一个 text.txt
文件,并且我想做 $ python prefixer.py text.txt
,我将如何读取 中的文本文件>前缀.py
?
How do I read in a file from python at the command line? So let's say i have a text.txt
file and I want to do $ python prefixer.py text.txt
, how would I read in the text file in my prefixer.py
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者,更好的是,
or, better,
我认为
fileinput
对此要好得多。易于使用简单的脚本:然后您可以执行
python myscript.py file.txt
甚至通过管道将其输入。Purrfect!https://docs.python.org/3/library/fileinput.html
I think
fileinput
is a lot nicer for this. Easy to use for simple scripts:Then you can do
python myscript.py file.txt
or even pipe it in. Purrfect!https://docs.python.org/3/library/fileinput.html