Posts by Smeagle • 1 point
1 post
-
0
votes3
answers269
viewsQ: How to Restart a Python Program?
I have to make a program that calculates the finite sum of a geometric progression, so I did: a_1 = float(input('Primeiro Termo: ')) a_2 = float(input('Segundo Termo: ')) n = int(input('Número do…