input()和sys.stdin.readline()的比较
1、sys.stdin.readline( )会将标准输入全部获取,包括末尾的'\n',input()则不会。一下例子,输入 hello
import sys
line = sys.stdin.readline()
for i in range(len(line)):
print(line[i]+'hello')
==>
hhello
ehello
lhello
lhello
ohello
hello
而
import sys
line = input()
for i in range(len(line)):
print(line[i]+'hello')
==>
hhello
ehello
lhello
lhello
ohello
要想删除sys.stdin.readline( )的换行符,可以用rstrip( )函数去掉(sys.stdin.readline( ).rstrip('\n'))
2、sys.stdin.readline( )可以指定读取用户输入的字符长度。下面例子输入 hello
import sys
line = sys.stdin.readline(3)
print(line)
==>hel