Jupyter / Colab无法正确加载/更新本地文件

时间:2019-02-25 14:17:33

标签: jupyter-notebook ipython

在导入本地文件时,如果添加/更改函数,则不会更新。

本地文件 命名为Dataset3:

def function_thingy(abc, bcd):
    return None

def added_more_functions(blah):
    return None

在Colab中:

import Dataset3

Dataset3??

输出:

Type:        module
String form: <module 'Dataset3' from '/storage/homes/tejaspan/FlowVO/Dataset3.py'>
File:        /storage/homes/tejaspan/FlowVO/Dataset3.py
Source:     
def function_thingy(abc, bcd):
    return None

def added_more_functions(blah):
    return None

在Colab中:

import Dataset3

#Dataset3??
Dataset3.function_thingy??

输出:

Object `Dataset3.function_thingy` not found.

在Colab中:

import Dataset3

#Dataset3??
#Dataset3.function_thingy??
Dataset3.added_more_functions??

输出:

Object `Dataset3.added_more_functions` not found.

如果有什么问题或预期结果,我并不知道。重新启动内核可解决此问题。

0 个答案:

没有答案