在一个py脚本中如何调用其他脚本呢?通过浏览网上的博文,大致有三种方式。 import 导入 对这样一个脚本: # a.py import sys def main(): if len(sys.argv) == 1: print("Hello World!") else