Learn Python LIST COMPREHENSIONS in 10 minutes! 📃
Автор: Bro Code
Загружено: 2024-06-02
Просмотров: 51122
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]
Доступные форматы для скачивания:
Скачать видео mp4
-
Информация по загрузке: