“Python für Loop One Line” Code-Antworten

Einzeile für Loop Python

[thing for thing in list_of_things] 
Tremendous Enceladus

Python für Schleife in einer Zeile

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

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

Python für Loop One Line

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

Wenn Anweisung in einer Zeile für Loop Python

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

wie man durch Linien Python schlägt

print(stripped_line)
Cautious Chimpanzee

Ähnliche Antworten wie “Python für Loop One Line”

Fragen ähnlich wie “Python für Loop One Line”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen