Techniques - General Flashcards
1
Q
lst = [2, 65, 6]
FInd the average of the above list of numbers
A
ave = sum(lst) / len(lst)
Python > Techniques - General > Flashcards
lst = [2, 65, 6]
FInd the average of the above list of numbers
ave = sum(lst) / len(lst)