Answers for "liste compréhension python"

31

python list comprehension

nums = [4, -7, 9, 1, -1, 8, -6]
half_of_nums = [x/2 for x in nums] #[2, -3.5, 4.5, 0.5, -0.5, 4, -3]

#optionally you can add an if statement like this
half_of_positive_nums = [x/2 for x in nums if x>=0] #[2, 4.5, 0.5, 4]
Posted by: Guest on May-20-2020
2

python list comprehension

nums = [3578, 6859, 35689, 268]
half_of_nums = [x/2 for x in nums]
Posted by: Guest on January-04-2021
1

list comprehension python 3

number_list = [x for x in range(10) if x % 2 == 0]
print(number_list)
Posted by: Guest on May-05-2020
0

liste compréhension python

In general,
[f(x) if condition else g(x) for x in sequence]

And, for list comprehensions with if conditions only,
[f(x) for x in sequence if condition]
Posted by: Guest on July-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language