2019年8月30日
摘要: '''代码片段'''import bisectdef classify(s): g = 'FEDCBA' data = [50, 60, 70, 80, 90] i = bisect.bisect(data, s) return g[i] 阅读全文
posted @ 2019-08-30 17:01 燕山明月 阅读(109) 评论(0) 推荐(0) 编辑