您现在的位置是:课程教程文章

python 如何获得重定向输入

2023-12-18 22:48课程教程文章 人已围观

通过内置的fileinput模块即可实现,创建文件filein.py:

#!/usr/bin/env python
import fileinput
f_input = fileinput.input()
for line in f_input:
     print(line, end='')

相关推荐:《Python教程》

增加可执行权限:

chmod a+x filein.py

使用:

$ ls | ./filein.py       # Prints a directory listing to stdout.
$ ./filein.py /etc/passwd  # Reads /etc/passwd to stdout.
$ ./filein.py < /etc/passwd # Reads /etc/passwd to stdout.
课程教程:python 如何获得重定向输入

上一篇:python中的布尔值是什么

下一篇:没有了

站点信息

  • 文章统计篇文章