所以我试图熟悉Jupyter笔记本并遇到问题。
当我在PyCharm IDE的普通.py文件中运行以下代码时,它运行完美;但是,如果我在我的笔记本中运行它,[*]永远不会消失,这意味着它只是连续运行永无止境。知道为什么会这样吗?所有答案都非常感谢!
import pandas as pd
train_file='C:\Users\DDautel\Anaconda2\PycharmProjects\Kaggle\Titanic\RUN.csv'
test_file='C:\Users\DDautel\Anaconda2\PycharmProjects\Kaggle\Titanic\RUN2.csv'
train=pd.read_csv(train_file)
test=pd.read_csv(test_file)
print train.describe()
print test.describe()
答案 0 :(得分:0)
对于其他人的满足感:
很高兴它已经解决了。 确保来自anaconda的python,ipython,jupyter(可能使用conda env)在你的路径之前。订单很重要。