Created
December 10, 2021 14:26
-
-
Save intel777/05356e0e32a2a753d5efc6649d2b7b8a to your computer and use it in GitHub Desktop.
Multi file gist for test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from submodule import subfunction | |
| if __name__ == '__main__': | |
| main() | |
| def main(): | |
| subfunction(input('Enter something: ')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def subfunction(data): | |
| print(f'Your data: {data}') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment