Skip to content

Instantly share code, notes, and snippets.

@VBPROGER
Last active October 14, 2022 20:08
Show Gist options
  • Save VBPROGER/1992301949e5279dc66db416a04b5d69 to your computer and use it in GitHub Desktop.
Save VBPROGER/1992301949e5279dc66db416a04b5d69 to your computer and use it in GitHub Desktop.
Python file template for begginers.
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# template.py: Python file template for begginers.
def cli():
pass # Your main function here!
def test():
pass # Your test function here!
if __name__ == '__main__':
cli()
else:
test()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment