codewitharyan
What will be the output?a = [1, 2, 3] b = a b.append(4) print(a)
2 months ago | [YT] | 1
codewitharyan
What will be the output?
a = [1, 2, 3]
b = a
b.append(4)
print(a)
2 months ago | [YT] | 1