Posts by jlucas • 35 points
3 posts
-
1
votes1
answer35
viewsQ: Passing dictionaries key as parameter in integrated function
I have a simple question about using working dictionaries. Is there any way I can pass the values of the ["Age"] keys of the dictionaries in the abc list as a parameter in the Mean function?…
-
1
votes2
answers53
viewsQ: Browse and collect data from dictionaries within a list
I have a list of several dictionaries containing registration data: [{'sex': ’M', 'age': 44}, {'sex': 'F', 'age': 33}, {'sex': ’M', 'age': 55}] I created separate functions to calculate the average,…
-
-2
votes3
answers98
viewsQ: How to identify numeric digits in numbers within a list?
I need some help. I am stuck in an exercise where beyond several guidelines, asks me to remove all numbers within a list that end with 7 (17, 27, 37, etc) How would I do that? (python)