Score: 0 / 0 answered
Progress: 0 of 1090 qs
time elap: 00:00
Question 1: What is the output of the following code snippet?
a = [1, 2, 3] b = a a[0] = 10 print(b)
Subject: Variables and Data Types in Python beginner level
Difficulty: Hard