Question 442: What will be the output of the following code snippet?numbers = [1, 2, 3, 4, 5]
numbers[1] = 9
print(numbers)
tcs
wipro
infosys
general
aptitude
arrays
Lists in Python are mutable, so you can change the value of an element using indexing.