Question 444: What will be the output of the following code snippet?fruits = ['apple', 'banana', 'cherry'] fruits.remove('banana') print(fruits)
tcs
wipro
infosys
general
aptitude
arrays
Theremove()method is used to remove a specific element from the list.fruits = ['apple', 'banana', 'cherry'] fruits.remove('banana') print(fruits)