[Py002]快速返回函数 2018-09-25 本文已影响16人 安哥生个信 定义一个函数,可以快速判断list的长度是否大于预设长度 def judgeList(list, length): return len(list) > length