Mastering Python Functions: A 15-Minute Crash Course for Beginners (2024 Edition)

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 11

  • @thaylows
    @thaylows หลายเดือนก่อน +4

    Reviewing all these concepts with your examples makes things I struggled to understand at the beginning seem super simple. It's amazing how much information you can pack into a single 15-minute video. I'm super excited about reviewing OOP!

    • @CodewithGunnar
      @CodewithGunnar  หลายเดือนก่อน +1

      That's really nice feedback - thank you! I try to not overload the videos with too much detail while still keeping them easy to follow, so your feedback is exactly what I'm trying to achive.

  • @grizzlygrizzfromnowhere4378
    @grizzlygrizzfromnowhere4378 หลายเดือนก่อน +3

    I have completed all your previous videos, eagerly waiting for this... Thank you sir.

    • @CodewithGunnar
      @CodewithGunnar  หลายเดือนก่อน +2

      Thank you so much. Work has been busy lately, so it took a little longer. Modules next, then Error Handling and Object Oriented Programming :)

  • @AndreyFlores-km9yb
    @AndreyFlores-km9yb หลายเดือนก่อน +1

    Thank you very much, this is one of the tutorials that have explained better

    • @CodewithGunnar
      @CodewithGunnar  หลายเดือนก่อน

      Thank you, Andrey - much appreciated :)

  • @berniwtorcs
    @berniwtorcs 9 วันที่ผ่านมา

    I think the spoken "italic is executed before bold" around 11:55 is a bit misleading, if you add a simple print you can see that the order of execution matches the declaration (bold before italic)

    • @CodewithGunnar
      @CodewithGunnar  9 วันที่ผ่านมา

      Hi - many thanks for the comment. I could have made it a little clearer, but italics being executed before bold refers to the order that the decorations are executed in. You can see that "Hello, World!" is wrapped in italics first (executed first) before being wrapped in an outer bold tag. Hope this clears it up :)

    • @berniwtorcs
      @berniwtorcs 9 วันที่ผ่านมา

      @@CodewithGunnar Hmm, this does not match my observation, if I look at it: first bold is called, generates leading "b", then func, first "i", then italic func, "Hello", return to italic, closing "i", return to bold, closing "b"

  • @mfarrise
    @mfarrise หลายเดือนก่อน +1

    Hi i am a big fan .Kinda was better to divide this lecture , and did you omit talking about scope intentionally for future videos?. As i said was better to divide i started to think about reading extra explanation from other sources right after lambda 😮.may be its me because i was listening casually over morning coffee. Any way please continue the pace is great and the depth and speed is satisfying . Im sick of 1 hour long lectures that in the end give info equal to 10% of what u give. You sir,remind me of bracky.i ll go listen again may be i dont need to look other place for more explanation after the second watch.

    • @CodewithGunnar
      @CodewithGunnar  หลายเดือนก่อน +1

      Hi Mohammad, thanks a lot for the kind and encouraging words. There was so much to say about functions that I had to exclude some stuff, otherwise the video will become 1 hours long ;) There will be a later video about topics like scope, asynchronous functions, functional programming, etc... but for now it was to get students going with functions. Glad you're enjoying the series!!