Created
February 4, 2023 17:54
-
-
Save R3DHULK/6cbfdf6b879589def0500b0b11756e83 to your computer and use it in GitHub Desktop.
Random Quote Generator In Python
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 | |
| 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