Posts by Pericolo • 101 points
1 post
-
0
votes2
answers677
viewsA: Dictionary for list of dictionaries
Assuming you have gotten the value 4.666 from the division of 28 by 6, you can use the function Ceil to effect rounding: import math age_avg = 28 / 6.0 # 4.666666666666667 print age_avg # imprime…