Choice Card History
History:
What will be the output of the following Python code? t = (1, 2) 2 * t
Talk
History
Edit
ACCEPTED
4 years ago
renyx
Name
: What will be the output of the following Python code? t = (1, 2) 2 * t
What will be the output of the following Python code?
t = (1, 2) 2 * t
(1, 1, 2, 2)
Re LEarn
(1, 2, 1, 2)
Right!!
[1, 1, 2, 2]
Wrong!!
[1, 2, 1, 2]
Oh no