在导入本地文件时,如果添加/更改函数,则不会更新。
本地文件 命名为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.
如果有什么问题或预期结果,我并不知道。重新启动内核可解决此问题。