摘要: # coding: utf-8# 三元运算,省代码量a = 2b = 5val = a if a < b else bprint(val)# val输出2 阅读全文
posted @ 2018-12-02 10:11 demilyc 阅读(213) 评论(0) 推荐(0)