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视频教程。