funzione generatore python

Solutions on MaxInterview for funzione generatore python by the best coders in the world

showing results for - "funzione generatore python"
Christian
21 May 2016
1def conteggio():
2    i = 0
3    while i <= 5:
4        yield i
5        i += 1
6
7lista = list(conteggio())
8print(lista) 
similar questions
queries leading to this page
funzione generatore python