Skip to content

Instantly share code, notes, and snippets.

@R3DHULK
Created February 4, 2023 17:54
Show Gist options
  • Select an option

  • Save R3DHULK/6cbfdf6b879589def0500b0b11756e83 to your computer and use it in GitHub Desktop.

Select an option

Save R3DHULK/6cbfdf6b879589def0500b0b11756e83 to your computer and use it in GitHub Desktop.
Random Quote Generator In Python
import random
quotes = [
"70% watermelon is bigger than 100% grape",
"Talk less, Start Coding",
"Overnight Success remains thousand night failure's story",
"quote 4",
"quote 5"
]
def random_quote():
return random.choice(quotes)
print(random_quote())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment