标准输入sys.stdin.readline()
sys.stdin.readline()
特点:
返回值末尾有
\n
,返回值一定是
str
类型
input()
特点:
返回值末尾没有
\n
,自动识别数据类型
int,float,str
标准用法:
去除空格,
/n
,/t
.strip()
切分
.split()
类型转换
list(map())
,map
返回的是迭代器!
1 | line = sys.stdin.readline().strip() |
标准输入 sys.stdin.buffer.read()
其他用法A = iter(A); for i, j in zip(A,A)
1 | from sys import stdin |
标准输入
1 | 1 |
标准输出
1 | 1 [2, 3, 4, 5] |
标准输入open(0)
1 | for i in open(0): |
标准输入
1 | 2 3 |
标准输出
1 | <class 'str'> 2 3 |
转载请注明来源 https://tianweiye.github.io