摘要: small = x if (x < y and x < z) else (y if y < z else z) 练习: >>> x, y, z = 7, 6, 5>>> small = x (if x < y and x < z) else (y if y < z else z) ##if不能再括号 阅读全文
posted @ 2016-11-18 10:51 月光边境Eric 阅读(263) 评论(0) 推荐(0) 编辑