Skip to content

Instantly share code, notes, and snippets.

@intel777
Created November 18, 2021 14:15
Show Gist options
  • Select an option

  • Save intel777/8ebd7c7b49892ba66b10311304b00bcd to your computer and use it in GitHub Desktop.

Select an option

Save intel777/8ebd7c7b49892ba66b10311304b00bcd to your computer and use it in GitHub Desktop.
Testing multiple files gist
from module import get_random_num
if __name__ == '__main__':
main()
def main():
print(get_random_num())
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