I know how I can get the sum of the numbers themselves in a range, but if I had an equation written in a for-loop such as the following:
for t in range(0,6):
velocity = (.2*(t**2)) + 3
How could I get Python to add all the outputs of the equation together?