In [5]:
import time

In [6]:
def TestPrint(lista,tempo=0.1):
    for elemento in lista:
        print(elemento)
        time.sleep(tempo)

In [7]:
x = [1,2,3,4,5,6,7]

In [9]:
TestPrint(lista=x,tempo=1)


1
2
3
4
5
6
7

In [ ]: