diff --git a/Python/get_random_quote.py b/Python/get_random_quote.py new file mode 100644 index 0000000..d2dc013 --- /dev/null +++ b/Python/get_random_quote.py @@ -0,0 +1,4 @@ +import random +quotes = ["Keep going!", "You can do it!", "Believe in yourself!"] +def get_random_quote(): + return random.choice(quotes)