Trouvez le lieu de l'élément dans la liste Python

streaming = ['netflix', 'hulu', 'disney+', 'appletv+']

index = streaming.index('disney+')
print('The index of disney+ is:', index)
Blushing Badger