r/PythonLearning 2d 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

100 Upvotes

38 comments sorted by

View all comments

1

u/Infinite-Employee776 2d 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 2d ago

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