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())原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容