介绍
使用方法:
1. 将第 1 个脚本命名为 test_main.py,将第 2 个脚本命名为 test_sub.py,并将它们放在同一个目录下
2. 给此脚本添加执行权限
3. 用 python3 命令执行第一个脚本
第一个脚本
from test_sub import *
a=2
b=3
out=nsum(a,b)
print(out)
第二个脚本
def nsum(x,y):
out = x + y
return(out)
使用方法:
1. 将第 1 个脚本命名为 test_main.py,将第 2 个脚本命名为 test_sub.py,并将它们放在同一个目录下
2. 给此脚本添加执行权限
3. 用 python3 命令执行第一个脚本
from test_sub import *
a=2
b=3
out=nsum(a,b)
print(out)
def nsum(x,y):
out = x + y
return(out)