How to Use List Comprehension in PYTHON?!

Опубликовано: 12 Апрель 2026
на канале: 5-Minute Python
436
16

In This Video I Will Show you How to Add Numbers To The List. Both Beginner and Pro.

If this is your first time here, and you want to become an expert in python
make sure to punch that red button and kiss that like button to enjoy my future videos.

🔔Subscribe For More Tips Just Like This: :    / @5-minutepython  


If you are newbie to Python, you are in the right place. At this channel, we are provide high quality videos to become a pro in Python .Our future videos are aimed at creating Beginner friendly advanced Python projects.Stay tuned,stay safe 😊.


EXTRA NOTE:
Try this on your own:
numbers = [i for i in range(10) if i%2 == 0]
print(numbers)

numbers = [i for i in range(10) if i%2 == 1]
print(numbers)