python有关函数的面试题

面试题

def tt(a,b,c=[]):
    c.append("you ")
    print(c)
tt(1,2)
tt(12,34)
tt(4,6)

在这里插入图片描述

发布了49 篇原创文章 · 获赞 5 · 访问量 2023

猜你喜欢

转载自blog.csdn.net/qq_44619595/article/details/103701081