Say I have a list of n
items
I want to print each one after another with a second in between each
say n = 5
:
list = [a,b,c,d,e]
I want "print list" to do
a
...1 second...
b
..1 second...
c
...etc...
I have tried messing around with timer functions but im not sure what exactly to do
x = [a,b,c,d,e,f]
for i in x
print x
PS C:\PYthon\A06> python -i test.py