SoFunction
Updated on 2024-11-21

pycharm tips (VIII) how to call a function in another file


# --------------------------------------
#! /usr/bin/python
# File:
# Author: Michael Fan


from import do


def main():
do()


if __name__ == '__main__':
main()
# --------------------------------------