“Python Creare Una List Verständnis” Code-Antworten

Python Creare Una List Verständnis

quadrati = []

for n in range(10):
    quadrati.append(n**2)

print(quadrati)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
Foolish Flamingo

Python Creare Una List Verständnis

quadrati = [n**2 for n in range(10)]

print(quadrati)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
Foolish Flamingo

Ähnliche Antworten wie “Python Creare Una List Verständnis”

Fragen ähnlich wie “Python Creare Una List Verständnis”

Weitere verwandte Antworten zu “Python Creare Una List Verständnis” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen