Learn Python MAP() in 3 minutes! 🗺️

Поделиться
HTML-код
  • Опубликовано: 25 ноя 2024

Комментарии •

  • @BroCodez
    @BroCodez  4 месяца назад +10

    # 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)

    • @zicogaming0
      @zicogaming0 4 месяца назад +2

      we want angular course

    • @zicogaming0
      @zicogaming0 4 месяца назад +2

      and a full stack long video

    • @Hnxzxvr
      @Hnxzxvr 4 месяца назад +1

      I stoped using python but after watching your videos I think I’m gonna continue

    • @robert-qn8hy
      @robert-qn8hy 4 месяца назад +1

      Can you also make a video on python asynchronous programming and lambda decorators

    • @Usernamenamjkjsh
      @Usernamenamjkjsh 4 месяца назад

      Giving some random dawah about Islam have you heard of it it's very peaceful 💚

  • @abir_existz7325
    @abir_existz7325 4 месяца назад +8

    Bro single handedly teaching millions of young coders in the making for free.

    • @Hnxzxvr
      @Hnxzxvr 4 месяца назад +1

      True

  • @ashwalker1
    @ashwalker1 4 месяца назад +4

    Hey bro hope you're doing well and thank you so much for all these videos for free you are really a true BRO

    • @italiandarthvader
      @italiandarthvader 3 месяца назад

      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

  • @ahmetunaldi7601
    @ahmetunaldi7601 29 дней назад

    Bro is such a good explainer that a person does need another tutor...

  • @fiberii5696
    @fiberii5696 4 месяца назад

    I subscribe your channel about 2 years ago when you have 35k subscribers, now you have 1.98m subscibers. that is amazing!

  • @josemarin8420
    @josemarin8420 2 месяца назад

    Thanks so much!!! 🙏🏻🙏🏻🙏🏻

  • @robert-qn8hy
    @robert-qn8hy 4 месяца назад

    Bro you are purely a programming GigaChad thanks a lot ..

  • @piano_depois_dos_50
    @piano_depois_dos_50 4 месяца назад

    Good tip! Thank you! : )

  • @robert-qn8hy
    @robert-qn8hy 4 месяца назад

    Awesome video bro

  • @เนื้อหมาอยู่ในจาน

    Wow, you're smart

  • @robert-qn8hy
    @robert-qn8hy 4 месяца назад

    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 😢🙏❤

  • @robert-qn8hy
    @robert-qn8hy 4 месяца назад

    Can you make video sir on python zip , filter , enumerate and other functions also custom functions in python

  • @toonarmycaptain
    @toonarmycaptain 4 месяца назад +1

    Why wouldn't you use a listcomp to make the list? [C_to_f(temp) for temp in celcius_temps]

  • @iMshadab
    @iMshadab 4 месяца назад

    at the end how does the code know what or where is temp

    • @balddog470
      @balddog470 2 месяца назад

      lambda takes temp as an argument