Skip to content

Instantly share code, notes, and snippets.

@Rorythedev
Created September 21, 2024 14:50
Show Gist options
  • Save Rorythedev/2533b6ee24e999b580af78953b09eb41 to your computer and use it in GitHub Desktop.
Save Rorythedev/2533b6ee24e999b580af78953b09eb41 to your computer and use it in GitHub Desktop.
gives you a youtube verified badge. WARNING: This is in beta so it may contain bugs or glitches.
def youtube_verified_badge():
badge = [
" ___ ",
" / ✓ \\ ",
"| _ |",
" \\_|_/ "
]
print("YouTube Verified Badge:")
for line in badge:
print(line)
# Call the function to display the badge
youtube_verified_badge()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment