我正在制作一个基本程序,我想在其中将用户的多个输入存储在预定义列表中。我的方法:
exampleList = []
exampleList = input("Enter the choice of user1: ")
exampleList = input("Enter the choice of user2: ")
exampleList = input("Enter the choice of user3: ")
exampleList = input("Enter the choice of user4: ")
exampleList = input("Enter the choice of user5: ")
# I want to store 5 number inputs in examples list
但是我不想多次使用输入函数。所需输出:
exampleList = [2,3,5,4,1]
问题来源:stackoverflow
可以考虑引入split 如
a,b=input("请输入两个数:").split() 请输入两个数:2 3 print(a,b) 2 3 print(type(a)) <class 'str'>
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。