标签:pre int for else nbsp 检查 内容 col def
def f1(*p): for i in p: # print(i) l = len(i) if l > 2: return(i[:2]) else: return (i) ret = f1([11,22,33]) print(ret)
写函数,检查传入列表的长度,如果大于2,那么仅保留前两个长度的内容,并将新内容返回给调用者。
标签:pre int for else nbsp 检查 内容 col def
原文地址:http://www.cnblogs.com/koushuige/p/7802911.html