Q. What will be the output of following python code?
Code:
a=list((45,)*4) print((45)*4) print(a)
β
Correct Answer: (C)
180[45,45,45,45].
a=list((45,)*4) print((45)*4) print(a)
You must be Logged in to update hint/solution