
🐍 Make It Pythonic
Sometimes we write a whole if/else just to return what the condition already knows.
Instead of writing:
def has_discount(total):
if total >= 100:
return True
else:
return False
✨ Write it the Pythonic way:
def has_discount(total):
return total >= 100
The expression total >= 100 already gives you either True or False.
So the function can return the condition directly.
If the condition already gives True or False, return it directly. 🐍
#Python #PythonCode #Coding #Programming #CodeNewbie #100DaysOfCode #Developer #AI #PythonTips

English