python怎么输入多变量
Python3.6同时输入多个值
1. 同时输入多个字符串,字符串间以逗号/空格间隔
a,b,c=input('三个字符串:').split(',') a,b,c=input('三个字符串:').split()
2. 同时输入多个数值,字符串间以逗号/空格间隔
a,b,c=eval(input('三个数字:')) a,b,c=map(eval,input('三个数字:').split())
更多技术请关注云海天Python教程。
来源:PY学习网:原文地址:https://www.py.cn/article.html