“python para bucle one línea” Código de respuesta

Una línea para bucle python

[thing for thing in list_of_things] 
Tremendous Enceladus

Python para bucle en una línea

mylist = [1,4,5,8,9,11,13,12]

newlist = [x for x in mylist if x%2 == 1]
print(newlist)
Nervous Nightingale

python para bucle one línea

>>> x = [1, 2, 3, 4, 5]
>>> y = [2*a for a in x if a % 2 == 1]
>>> print(y)
[2, 6, 10]
Open Okapi

If Declaración en una línea para Loop Python

>>> [(i) for i in my_list if i=="two"]
['two']
Tremendous Enceladus

Cómo recorrer las líneas Python

print(stripped_line)
Cautious Chimpanzee

Respuestas similares a “python para bucle one línea”

Preguntas similares a “python para bucle one línea”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código