Python初学者零碎基础笔记(一)

   日期:2020-10-11     浏览:101    评论:0    
核心提示:Python初学者零碎基础笔记一行代码输入多个参数方法1.) a,b,c=map(类型,input(“请输入”).split())#默认空格分隔,若要转其他类型,把类型换成需要的如-----转整型:map(int,input(“请输入”).split())a,b,c=map(int,input("请输入").split())print(a+b+c,type(a),type(b),type(c))>>>请输入1 2 3>>>>6 <cla

Python初学者零碎基础笔记

一行代码输入多个参数

方法1.) a,b,c=map(类型,input(“请输入”).split())
#默认空格分隔,若要转其他类型,把类型换成需要的
如-----转整型:map(int,input(“请输入”).split())

a,b,c=map(int,input("请输入").split())
print(a+b+c,type(a),type(b),type(c))
#扩展:当为字符串时,字符串相加,则‘+’号为拼接作用
#当为整型时,整型相加,则‘+’号为数学中的加法运算作用
>>>请输入1 2 3
>>>>
6 <class 'int'> <class 'int'> <class 'int'>

如-----转字符串:map(str,input(“请输入”).split())

a,b,c=map(str,input("请输入").split())
print(a+b+c,type(a),type(b),type(c))
#扩展:当为字符串时,字符串相加,则‘+’号为拼接作用
#当为整型时,整型相加,则‘+’号为数学中的加法运算作用
>>>请输入1 2 3
>>>
123 <class 'str'> <class 'str'> <class 'str'>

方法2.)a,b,c=eval(input(“请输入”))
#默认逗号分隔 ,你输入什么类型就是什么类型,(注:输入字符串需要加英文字母的引号引起来)
优点:方便简洁,缺点:安全性不高,涉及到做项目的不建议使用,单使用input较好

a,b,c=eval(input("请输入"))
print(a,b,c,type(a),type(b),type(c))
print(a+b,c,type(a),type(b),type(c))
#扩展:当为字符串时,字符串相加,则‘+’号为拼接作用
#当为整型时,整型相加,则‘+’号为数学中的加法运算作用
>>>请输入1,2,'你好'  #字符串需要加英文字母的引号引起来
>>>
1 2 你好 <class 'int'> <class 'int'> <class 'str'>
>>>
3 你好 <class 'int'> <class 'int'> <class 'str'>

转为字符串str

a,b,c=eval(input("请输入"))
a=str(a)
b=str(b)
print(a+b,c,type(a),type(b),type(c))
#扩展:当为字符串时,字符串相加,则‘+’号为拼接作用
#当为整型时,整型相加,则‘+’号为数学中的加法运算作用
>>>请输入1,2,'你好'
>>>
12 你好 <class 'str'> <class 'str'> <class 'str'>

方法3.)a,b,c=input(“请输入”).split(’’,’’)
#split(’’,’’)代表逗号分隔 ,也可换成其他,输出结果默认为字符串,若要转其他类型,则需加要转换的类型在前面

a,b=input('请输入').split(',')
print(a,b,type(a),type(b))
print(a+b,type(a),type(b))
#扩展:当为字符串时,字符串相加,则‘+’号为拼接作用
#当为整型时,整型相加,则‘+’号为数学中的加法运算作用
>>>请输入1,2
>>> 
1 2 <class 'str'> <class 'str'>
>>> 
12 <class 'str'> <class 'str'>

转为整型int

a,b=input('请输入').split(',')
a=int(a)
b=int(b)
print(a+b,type(a),type(b))
#扩展:当为字符串时,字符串相加,则‘+’号为拼接作用
#当为整型时,整型相加,则‘+’号为数学中的加法运算作用
>>>请输入1,2
>>> 
3 <class 'int'> <class 'int'>
 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服