Python中如何实现一行输入多个值

Python 2 的 raw_input()以及 Python 3 的 input()获取的是整行的字符串。

那么对于一行输入多值,例如:
输入为一行,包括用空格分隔的三个整数,分别为 a、b、c

# -*- coding:utf-8 -*-

#方法一:

 a, b, c = map(int, raw_input('请输入3个整数, 用空格分隔:').split())  
# 如果是Python 3, 自行替换raw_input为input

print '\n输入3个整数为:%s %s %s'%(a, b, c)

# -*- coding:utf-8 -*-

#方法二:

a, b, c = raw_input('请输入3个整数, 用空格分隔:').split()

print '\n输入3个整数为:%s %s %s'%(a, b, c)

# -*- coding:utf-8 -*-

#方法三:

# a, b, c = (int(x) for x in raw_input('请输入3个整数, 用空格分隔:').split())

print '\n输入3个整数为:%s %s %s'%(a, b, c)

你可能感兴趣的:(Python中如何实现一行输入多个值)