Jupyter Notebook不会输出

时间:2018-11-26 17:40:53

标签: python jupyter-notebook jupyter

我的简单程序应该输出1,2,3,4,5,6,但是在执行时,它只会跳到下一个单元格。我运行了一个for循环,在其中显示了输出。

寻找有关如何始终如一地获取输出的指针。

def main():
    x = 0

    while (x<6):
        print (x)
    x = x +1

1 个答案:

答案 0 :(得分:0)

最后一行应在while循环内。发生的事情是您的内核被无限循环锁定了(因为您从未实际递增x

def main():
    x = 0

    while (x<6):
        print (x)
        x = x +1

main()
0
1
2
3
4
5