
Python puzzle for you all 🐍
What will this print?
a = [[1]] * 3
a[0][0] = 99
print(a)
Reply with your answer + explanation (or code fix)! Bonus: How to create 3 independent lists instead?
Don't cheat by executing on Python console
#Python #CodingChallenge #PythonPuzzle
English




























