按下回车键退出while循环

时间:2018-03-05 08:34:58

标签: python

当用户点击回车键时,我需要从用户那里获取多个输入并退出循环。

这就是我想要做的。

while True:
    data = input("Enter name age and score:\t").split(",")
    if data==' ':
         break
    else:
         continue

2 个答案:

答案 0 :(得分:0)

只需检查bool值:

while True:
    data = input("Enter name age and score:\t")
    if not data:
         break
    else:
         continue

答案 1 :(得分:0)

试试这个

data = input("Enter name age and score:")
while data.strip() != '':
    data = input("Enter name age and score:")