從本地將包括自定義模組的.py檔案上傳到google drive資料夾下,如我這裡使用的是hello.py中的hello()模組。我將hello.py檔案放到了"/content/drive/my drive/colab notebooks/demo"檔案目錄下;
def hello():
print('hello!')
新建乙個google colab檔案,我這裡命名為「test」;
分別輸入一下**:
import os
from google.colab import drive
drive.mount(
'/content/drive'
)path =
"/content/drive/my drive/colab notebooks/demo"
os.chdir(path)
os.listdir(path)
from hello import hello
hello(
)
最後成功列印:
hello!
linux shell 程式設計 10 指令碼中呼叫指令碼
在shell指令碼中呼叫另乙個指令碼的三種不同方法 fork,exec,source 1 fork 呼叫指令碼 fork directory script.sh fork是最普通的,就是直接在指令碼裡面用 directory script.sh來呼叫script.sh這個指令碼.執行的時候開乙個su...
同一指令碼中的函式和呼叫
perl裡面呼叫子程式,這個沒有特別的地方。如果需要跟子過程傳入傳出引數,就變成了函式。這也沒什麼特別,只在函式裡獲得傳入引數的語句需要注意下。例子trim test.pl,指令碼裡建trim函式,消除前後的空格 製表符等空白 usr bin perl w trim test.pl use stri...
C 呼叫python3 7指令碼
3.報錯 總結c 調python環境配置 python c api參考文件 新增當前路徑 pyrun string import sys pyrun string print import sys pyobject pname,pmodule,pfunc,pargs 載入名為pytest的指令碼 p...