赞
踩
1.同时输入两个整数:
>>> a,b=map(int,input().split())
10 20
>>> a+b
30
2.输入两个字符串:
>>> a,b=input().split()
10 20
>>> a+b
'1020'
3.使用eval()函数
>>> a,b=eval(input())
10,20
>>> a+b
30
---------------------
作者:dationer
来源:CSDN
原文:https://blog.csdn.net/dationer/article/details/80414560
版权声明:本文为博主原创文章,转载请附上博文链接!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。