摘要: A. Splitting in Teams A. Splitting in Teams There were n groups of students which came to write a training contest. A group is either one person who c 阅读全文
posted @ 2018-01-02 12:36 starry_sky 阅读(292) 评论(0) 推荐(0) 编辑
摘要: if else 语句: 表达式 c = a if a > b else b: 二维列表: c = [b,a][a>b] c = (a > b and [a] or [b])[0] 输入n个数转换为list: a//b 反转:str[::-1] 阅读全文
posted @ 2018-01-02 12:04 starry_sky 阅读(202) 评论(0) 推荐(0) 编辑