例如:我有一个 python 脚本 scip.py
from sys import argv
# parsing the input
script, NU = argv
def main(NU):
return
def somefunc():
return
if __name__ == '__main__':
main(NU)
假设我在 [I] python shell 中。我可以运行脚本,例如通过run scip.py 1
. 但是我怎样才能从中导入函数呢?import scip
失败,因为它需要变量来解包。import scip 1
给出一个语法错误。