# map(function, collection) = Applies a given function to all items in a collection celsius_temps = [0.0, 10.0, 20.0, 30.0, 40.0, 50.0] fahrenheit_temps = list(map(c_to_f, celsius_temps)) print(fahrenheit_temps)
Bro can you make a tutorial on python string methods and keywords plus multiple exceptions , string functions ,asyncio , threading , lambda decorators , useful tricks please please please 😢🙏❤
# map(function, collection) = Applies a given function to all items in a collection
celsius_temps = [0.0, 10.0, 20.0, 30.0, 40.0, 50.0]
fahrenheit_temps = list(map(c_to_f, celsius_temps))
print(fahrenheit_temps)
we want angular course
and a full stack long video
I stoped using python but after watching your videos I think I’m gonna continue
Can you also make a video on python asynchronous programming and lambda decorators
Giving some random dawah about Islam have you heard of it it's very peaceful 💚
Bro single handedly teaching millions of young coders in the making for free.
True
Hey bro hope you're doing well and thank you so much for all these videos for free you are really a true BRO
I studied how to use python from this guy years ago and I still am learning new things from him today. His videos are gold
Bro is such a good explainer that a person does need another tutor...
I subscribe your channel about 2 years ago when you have 35k subscribers, now you have 1.98m subscibers. that is amazing!
Thanks so much!!! 🙏🏻🙏🏻🙏🏻
Bro you are purely a programming GigaChad thanks a lot ..
Good tip! Thank you! : )
Awesome video bro
Wow, you're smart
Bro can you make a tutorial on python string methods and keywords plus multiple exceptions , string functions ,asyncio , threading , lambda decorators , useful tricks please please please 😢🙏❤
Can you make video sir on python zip , filter , enumerate and other functions also custom functions in python
Why wouldn't you use a listcomp to make the list? [C_to_f(temp) for temp in celcius_temps]
at the end how does the code know what or where is temp
lambda takes temp as an argument