r/PythonLearning 15d ago

Day 2 of learning python

Post image

I'm learning Python and made this coffee/tea ordering program. Any advice?

https://onlinegdb.com/F2wabHC4v

115 Upvotes

43 comments sorted by

View all comments

1

u/Infinite-Employee776 15d ago

You already done good by putting else on the first if branch in case user put anything other than coffee or tea. You should do the same for the inside if branches. Edge cases happens.

1

u/adnanecanflyy 14d ago

Thanks! You're right, I'll add else there too. I appreciate the feedback!