怎么去创建一个模块文件,然后用来比较两个数的大小,最后输出数据
收起
test.py
import test1 print(test1.maxx(3,5))
test1.py
def maxx(a,b): return max(a,b)
报告相同问题?