distutils 实现对package 包的发布

import math


def showMsg(a):
    return a * a * a


a = 10
print('%d 的三次方是 %d' % (a, showMsg(a)))
package.py

相关文章: