likes
comments
collection
share

Python 面试题,下面代码输出什么,为什么?

作者站长头像
站长
· 阅读数 33

下面代码输出什么,为什么?

def func():
    lst, lst2 = [7], [7]
    lst3 = lst * 2
    return lst3 == lst2.extend(lst)


print(func())

A:False   B:[7, 7]      C:True     D:Error

答案解析更多面试题:https://mp.weixin.qq.com/

转载自:https://juejin.cn/post/7209852117296300088
评论
请登录