A good programming habit is to have a skeleton for every new project. Below is a simple skeleton Python project which can be served as an entry point for a initial start of writing your own skeleton:
----------
Bộ khung mẫu của một chương trình trong python! Nó sẽ giúp ích trong việc tổ chức code
----------
----------
Bộ khung mẫu của một chương trình trong python! Nó sẽ giúp ích trong việc tổ chức code
----------
import sys def main(): func1() func2() pass def func1(): # doing your work pass def func2(): # doing your work pass if __name__ == '__main__': sys.exit(main())
No comments:
Post a Comment