diff --git a/FirstCommit.py b/FirstCommit.py index 26c8ef2..8d2288f 100644 --- a/FirstCommit.py +++ b/FirstCommit.py @@ -5,7 +5,11 @@ def fish(): fishy = input("What is your favorite fish? Insert here: ") - print(fishy + "? That sounds disgusting!") + rating = input("How would you rate it from 1 to 10? Insert here: ") + if int(rating) >= 5: + print(fishy + "? That sounds delicious!") + else: + print(fishy + "? That sounds disgusting!") return fish()