Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 159 Bytes

File metadata and controls

18 lines (13 loc) · 159 Bytes

传统的写法

condition  = True 

if condiction:
    x = 1
else:
    x = 2

print(x)

pythonic 写法

x = 1 if condition else 2