判断题
执行以下代码:
def func(list_1):
list_1=[5,8]
list_1=[20,12,53]
func(list_1)
t=tuple(list_1)
print(t)
程序输出的结果为:(5,8)。
A.
正确
B.
错误
发表评论 取消回复