当前位置:首页
>
查试题
>
学历类
>
高职单招
>
计算机类
>
阅读如下程序,写出程序的执行结果。
(1)list=[1,2,1,3]
nums=set(list)
print(nums)
程序的执行结果是()。
(2)a=8*(8)
b=4*(4,)
print("a=",a,"b=",b)
程序的执行结果是()。
(3)temp=("Li","Yu","Song","Gao","Zha")
temp=temp[:2]+("Tang",)+temp[3:]
print(temp)
程序的执行结果是()。