Python List Comprehensions Tutorial

preview_player
Показать описание
Quick Tutorial on what Python List Comprehensions are. Hope it makes sense! Let me know if it doesn't!

Happy to cover any topics you need, post them!

Merch Store --
Support the Channel on Patreon --
Join The Socials --
*****************************************************************
Full code from the video:

a = [2,4,6,8,10]

b = []
for i in a:
c = i + 2

print(b)

d = [ i + 2 for i in a if i != 6]
print(d)

*****************************************************************
Code from this tutorial and all my others can be found on my GitHub:

Check out my website:

If you liked the video - please hit the like button. It means more than you know. Thanks for watching and thank you for all your support!!

--- Channel FAQ --

What text editor do you use?

What Equipment do you use to film videos?

What computer do you use/desk setup?

What editing software do you use?
Premiere Pro for video editing
Photoshop for images
After Effects for animations

Do I have any courses available?
Yes & always working on more!

Where do I get my music?
I get all my music from the copyright free Youtube audio library

Let me know if there's anything else you want answered!

-------------------------

Always looking for suggestions on what video to make next -- leave me a comment with your project! Happy Coding!
Рекомендации по теме
Комментарии
Автор

Hello Derrick, thank you very much for your videos, I really like it! I would really appreciate if you make a video about making a Choropleth city map by using python and some data visualisation library(Plotly, etc). Thank you very much for your effort!

stanislavkarasev