Learn how to get Free YouTube subscribers, views and likes
Get Free YouTube Subscribers, Views and Likes

Learn Python LIST COMPREHENSIONS in 10 minutes! 📃

Follow
Bro Code

List comprehension = A concise way to create lists in Python
Compact and easier to read than traditional loops
[expression for value in iterable if condition]

doubles = [x * 2 for x in range(1, 11)]
triples = [y * 3 for y in range(1, 11)]
squares = [z * z for z in range(1, 11)]

fruits = ["apple", "orange", "banana", "coconut"]
uppercase_words = [fruit.upper() for fruit in fruits]
fruit_chars = [fruit[0] for fruit in fruits]

posted by ostaklimh0