0
I want to show the output of the data in queue form, for how many times the user wants.
def ex1():
valo = int (input("Insira o numero"))
for t in range (1,valo+1):
print((int(valo))*1)
print (ex1())
Ex: times = 4
Saida:
4
44
444
4444
Thank you very much!
– ZeroCold