Python > Techniques - General > Flashcards
lst = [2, 65, 6]
Find the average of the above list of numbers
ave = sum(lst) / len(lst)
Python (30 decks)