1. 程式人生 > >python中的3目運算(3元表達式)

python中的3目運算(3元表達式)

bsp gpo 運算 brush class blog else == 表達式

js中

ret  = 1 == 1 ? ‘true‘ : ‘false‘

python中

ret = ‘true‘ if 1==1 else ‘false‘

python中的3目運算(3元表達式)