removeAtRemoves a list item at indexremoveAt(targetList, index)CopyParameters#targetList: The target listindex: The index of item needs to be removedReturns#No valueExample#fruits = ['apple', 'banana', 'orange']removeAt(fruits, 1)print(fruits) # prints [apple, orange]Copy