Created
November 18, 2021 14:15
-
-
Save intel777/8ebd7c7b49892ba66b10311304b00bcd to your computer and use it in GitHub Desktop.
Testing multiple files gist
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 module import get_random_num | |
| if __name__ == '__main__': | |
| main() | |
| def main(): | |
| print(get_random_num()) |
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
| import random | |
| def get_random_num(): | |
| return random.randint(0, 10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment