age = 12 if age > 12 : print("big") elif age == 12: print("same") else: print("small")
if else 补充
原文:https://www.cnblogs.com/poirotluo/p/8149891.html