電腦世界的紛紛擾擾。
from test import * if __name__ == "__main__": main() def main(): print("main") sub() def sub(): print("sub")
main sub