首页 > 其他 > 详细

input()和sys.stdin.readline()的比较

时间:2017-07-18 23:44:12      阅读:445      评论:0      收藏:0      [点我收藏+]

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()的比较

原文:http://www.cnblogs.com/zhangyuxin/p/7203336.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!