首页 > 代码库 > input()和sys.stdin.readline()的比较
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
input()和sys.stdin.readline()的比较
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。