Skip to content

Instantly share code, notes, and snippets.

@Rorythedev
Created September 21, 2024 16:55
Show Gist options
  • Save Rorythedev/0fab6a1681c138556b58658133bbccc6 to your computer and use it in GitHub Desktop.
Save Rorythedev/0fab6a1681c138556b58658133bbccc6 to your computer and use it in GitHub Desktop.
GYATTTTTTT warning this is in beta so be careful!
print("Welcome to the Gyatt Viewer!")
level_input = input("Please enter the GD level you want to see: ")
if level_input.isdigit():
level = int(level_input)
if level >= 1 and level <= 10:
print("Displaying Gyatt for GD level", level)
print("""
_____
/ \\
| () () |
\\ ^ /
|||||
""")
else:
print("Invalid GD level. Please enter a number between 1 and 10.")
else:
print("Invalid input. Please enter a number.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment