Posts by Daniel Santos • 1 point
1 post
-
-1
votes1
answer33
viewsQ: How to run table algorithm again if user chooses to run again?
from time import sleep print('-=-'*20) print('Tabuada da adição') print('-=-'*20) n = int(input('Insira um número: ')) n0 = n + 0 n1 = n + 1 n2 = n + 2 n3 = n + 3 n4 = n + 4 n5 = n + 5 n6 = n + 6 n7…