码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-07-19 00:27:26      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:函数   长度   port   readline   hello   print   ==   for   adl   

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

标签:函数   长度   port   readline   hello   print   ==   for   adl   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!