Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion FirstCommit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()