MENU

Fun & Interesting

Learn Python LIST COMPREHENSIONS in 10 minutes! 📃

Bro Code 27,029 11 months ago
Video Not Working? Fix It Now

# 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]

Comment