欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python标准输入、标准输出

程序员文章站 2022-04-10 12:03:31
...

标准输入、标准输出是一种输入输出规范,在python中直接调用相关函数即可

标准输入

读一行 context = sys.stdin.readline()
读全部 context = sys.stdin.readlines()
重定向(以文本为例)

inputFile = open('test.txt','r')
sys.stdin = inputFile
context = sys.stdin.read()

标准输出

输出一行 sys.stdout.write(context)