Computer Science, asked by kumarchandan2111998, 7 months ago

from statistics import mode

fruits = ['apple', 'grapes', 'orange', 'apple']

# find mode of the list 'fruits'
mode(___)

Answers

Answered by Anonymous
0

Answer:

your answer

INPUT

from statistics import mode

fruits = ['apple', 'grapes', 'orange', 'apple']

# find mode of the list 'fruits'

(mode(fruits))

OUTPUT

apple

#hope it helps you

please mark brainliest

Similar questions