开发人员经常希望用户在一行中输入多个值或输入。在 C++/C 中,用户可以使用 scanf 在一行中获取多个输入,但在 Python 中,用户可以通过两种方法在一行中获取多个值或输入。
- 使用 split() 方法
- 使用列表理解
使用 split() 方法:
此函数有助于从用户那里获取多个输入。它通过指定的分隔符打破给定的输入。如果未提供分隔符,则任何空格都是分隔符。通常,用户使用 split() 方法来拆分 Python 字符串,但可以使用它来获取多个输入。
语法 :
input().split(separator, maxsplit)
例子 :
展示了如何使用 split 进行多重输入的Python 程序
一次接受两个输入
x, y = input("Enter two values: ").split() print("Number of boys: ", x) print("Number of girls: ", y) print()
一次接受三个输入
x, y, z = input("Enter three values: ").split() print("Total number of students: ", x) print("Number of boys is : ", y) print("Number of girls is : ", z) print()
一次接受两个输入
a, b = input("Enter two values: ").split() print("First number is {} and second number is {}".format(a, b)) print()
一次接受多个输入
# and type casting using list() function x = list(map(int, input("Enter multiple values: ").split())) print("List of students: ", x)
输出
使用列表推导:
列表推导是在 Python 中定义和创建列表的一种优雅方式。我们可以像数学语句一样只在一行中创建列表。它还用于从用户获取多个输入。
例子:
展示了如何使用列表推导式获取多个输入的Python 程序
一次接受两个输入
x, y = [int(x) for x in input("Enter two values: ").split()] print("First Number is: ", x) print("Second Number is: ", y) print()
一次接受三个输入
x, y, z = [int(x) for x in input("Enter three values: ").split()] print("First Number is: ", x) print("Second Number is: ", y) print("Third Number is: ", z) print()
一次接受两个输入
x, y = [int(x) for x in input("Enter two values: ").split()] print("First number is {} and second number is {}".format(x, y)) print()
一次接受多个输入
x = [int(x) for x in input("Enter multiple values: ").split()] print("Number of list is: ", x)
输出 :
注意: 以上示例采用空格分隔的输入。如果我们希望输入用逗号 (, ) 分隔,我们可以使用以下内容:
# 一次接受多个输入,用逗号分隔 x = [int(x) for x in input("Enter multiple value: ").split(",")] print("Number of list is: ", x)
感谢大家的阅读,有什么问题的话可以在评论中告诉我。希望大家能够给我来个点赞+收藏+评论 ,你的支持是海海更新的动力!后面我会持续分享前端 & 后端相关的专业知识。