python 读取用户键盘输入

import sys

#使用for循环遍历标准输入

for line in sys.stdin:

    print("用户输入:" , line , end = '')