Answers for "python 1 line for loop with else"

15

one-line for loop python

[thing for thing in list_of_things]
Posted by: Guest on March-17-2020
5

if statement in one-line for loop python

>>> [(i) for i in my_list if i=="two"]
['two']
Posted by: Guest on March-31-2020
0

python 1 line for loop with else

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

newlist = [x+1 if x%2 == 1 else x for x in mylist]
print(newlist)
Posted by: Guest on February-14-2022

Code answers related to "python 1 line for loop with else"

Python Answers by Framework

Browse Popular Code Answers by Language