You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Write a Python program that takes a dictionary as an input from the user and then prints the average of all the values in the dictionary.[You are not allowed to use len() and sum()]
# Sample Input 1: {'Jon': 100, 'Dan':200, 'Rob':300}. Sample Output 1: Average is 200.