Python | Map in 3 Minutes

preview_player
Показать описание
This three minute Python tutorial will show you the built-in Map function which allows you to perform an operation on a collection of items and return a new collection. Map builds on the previous lambda tutorial and can work on multiple collections as well.

=============================

➤ Full Article:

➤ Impatient Programmer:

➤ Exercises:

--- FOLLOW ME! ---

=============================
PLAYLISTS:

➤ Let's Learn C++: INTERMEDIATE

➤ Let's Learn C++: BASICS
➤ Let's Learn PYTHON: BASICS

➤ Let's Learn PYTHON: OOP

➤ Let's Learn PYTHON: Scripting

➤ Secret Projects

=============================

Music by Juto:

=======================================

New Episode (nearly) Every Friday

=============================
☁♡ Keep the Dream Alive! ♡☁

My comments and words are my own and do not represent the views or opinions of my employer in anyway.
Рекомендации по теме
Комментарии
Автор

Thanks for making these videos. I find the level of detail just right and appreciate how quick they are for us impatient programmers!

SamEdwardes
Автор

A revolution without dancing is a revolution not worth having.

shadowgallery
Автор

And so why not using list comprehension ?

DreamVoxels
Автор

jesus your intro scared the shit out of me

Robotomy
Автор

Terrible map example with adding two lists. A SIGNIFICANTLY easier way is to do it like this:

[1, 2, 3] + [4, 5, 6]

pixelPlex