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

输入函数

时间:2020-01-01 22:12:58      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:不包含   NPU   cli   class   split   aaa   sed   输入   字符串   

1 input()

技术图片
# input()函数输入的任何量都会转为str类型,所以要映射为int
l,r=map(int,input().split())
print(l, r, type(l))
# 输入 1 2
# 1 2 <class ‘int‘>
View Code

2 sys.stdin.readline()

技术图片
# 同input一样默认输入的格式是字符串
import sys
# line1 = sys.stdin.readline()        # 包含换行符"\n"
line1 = sys.stdin.readline().strip()  # strip()默认去掉换行符"\n"
line2 = input()  # 不包含换行符"\n"
print(len(line1), len(line2))
# aaa
# bbb
# 3 3
View Code

ttt

输入函数

标签:不包含   NPU   cli   class   split   aaa   sed   输入   字符串   

原文地址:https://www.cnblogs.com/xxswkl/p/12130286.html

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