names.py
来自「reduced python source for embedded apps」· Python 代码 · 共 15 行
PY
15 行
import sys# My home directory/GUIDO = '/ufs/guido/'# Hack sys.path so AL can be foundLIB = GUIDO + 'lib/python'if LIB not in sys.path: sys.path.insert(0, LIB)# Python binary to be used on remote machinePYTHON = GUIDO + 'bin/sgi/python'# Directory where the programs liveAUDIODIR = GUIDO + 'src/python/demo/sgi/al'
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?