如何在Jupyter中使用输入?

时间:2019-09-14 15:31:11

标签: python input jupyter-notebook jupyter

我尝试过喜欢下面的方法,但这没用。

'''
students = []

while True:
    new = list(input("Name, Grade, Number: "))
    student.add(new)
    if not new:
        break
'''

它没有显示任何结果。我什么都不能输入。

1 个答案:

答案 0 :(得分:1)

不带三引号的情况下尝试一下:

students = []

while True:
    new = list(input("Name, Grade, Number: "))
    students.add(new) # typo here
    if not new:
        break