Report Bug
Qus : Can we write if / else into one line in python?
Qusक्या हम पाइथन में एक लाइन में if / else लिख सकते हैं?

A. Yes
B. No
C. if / else not used in python
D. None of the above.


Solution
A. Yes



Explanation

a='good' if 2+2==4 else 'bad'

print(a)




Report Bug