brennerm / PyTricks

Collection of less popular features and tricks for the Python programming language
MIT License
3.07k stars 503 forks source link

Netsed if else #101

Open satyasahoo210 opened 5 years ago

satyasahoo210 commented 5 years ago

Traditional way

if a > 7:
    b = '>7'
elif a == 7:
    b = '7'
else:
    b = '<7'

hack

b = '>7' if a > 7 else '7' if a == 7 else '<7'