Q19Multiple correct3 Marks28 Apr 2024
Consider the following snippets of code. Select all true statements.
# Code-1
L = [1, 2, 3]
L.append(4)
# Code-2
T = (1, 2, 3)
T[0] = 4
# Code-3
D = {'one': 1}
print(D['one'])
Programming in Python · Week 6