L3:Python
L3:Python
7
01/08/2018 Debajyoti Ghosh, Asst. Prof, BML Munjal University
Bitwise Operators
8
01/08/2018 Debajyoti Ghosh, Asst. Prof, BML Munjal University
Bitwise Operators
>>> a,b=10,20
>>> min=a if a<b else b
>>> print(min)
10