Functions in Python are easy 📞

Поділитися
Вставка
  • Опубліковано 20 тра 2024
  • #python #tutorial #course
    00:00:00 functions
    00:01:49 arguments
    00:04:28 exercise #1
    00:06:12 return
    00:08:27 exercise #2
    00:10:08 conclusion
    --------- EXAMPLE 1 ---------
    def display_invoice(username, amount, due_date):
    print(f"Hello {username}")
    print(f"Your bill of ${amount:.2f} is due: {due_date}")
    display_invoice("BroCode", 42.50, "01/02")
    display_invoice("JoeSchmo", 100.99, "02/03")
    --------- EXAMPLE 2 ---------
    def create_name(first, last):
    first = first.capitalize()
    last = last.capitalize()
    return first + " " + last
    full_name = create_name("spongebob", "squarepants")
    print(full_name)

КОМЕНТАРІ • 286

  • @BroCodez
    @BroCodez  Рік тому +118

    # ---------- EXAMPLE 1 ----------
    def display_invoice(username, amount, due_date):
    print(f"Hello {username}")
    print(f"Your bill of ${amount:.2f} is due: {due_date}")
    # display_invoice("BroCode", 42.50, "01/01")
    # display_invoice("JoeSchmo", 100.01, "01/02")
    # ---------- EXAMPLE 2 ----------
    def create_name(first, last):
    first = first.capitalize()
    last = last.capitalize()
    return first + " " + last
    full_name = create_name("spongebob", "squarepants")
    print(full_name)

  • @TheGeekosDen
    @TheGeekosDen Рік тому +121

    No credit card, no bullshit, straight to the point. Impressed.

  • @brysontrotman5865
    @brysontrotman5865 7 місяців тому +291

    I got more out of a 10 minute video than three weeks of my college course! This cleared so much stuff up for me!

    • @paxy3877
      @paxy3877 7 місяців тому +1

      hey, what do u take in ur course?

    • @user-ct7jc4dp9h
      @user-ct7jc4dp9h 6 місяців тому +22

      Your like the 20th person in college I’ve seen make a comment like that. I’m not going to college it seems like UA-cam university is good enough

    • @brysontrotman5865
      @brysontrotman5865 6 місяців тому

      @@user-ct7jc4dp9h unfortunately jobs like seeing that you have a piece of paper on your resume. While I'm sure someone is going to see this and comment how the got a programming job in three months after they read the first page of a Python book, for the most part Jobs require it

    • @lorna_ovlov240
      @lorna_ovlov240 6 місяців тому +6

      yea same... I understood it ride away and it was on point. Our teacher is just so confusing when he is explaining stuff

    • @Heitor55541
      @Heitor55541 5 місяців тому +3

      I feel you

  • @radiantthoughts8718
    @radiantthoughts8718 11 місяців тому +134

    I was bro years old when I learned how to make a Python function. Thanks for the informative video!

  • @SarmK
    @SarmK Рік тому +186

    underated content

  • @storm.5252
    @storm.5252 Рік тому +84

    UA-cam algorithm should show this type of good content more often

  • @86ddmorales1
    @86ddmorales1 Рік тому +11

    Clear, simple, easy. Nicely done! Keep it up!

  • @MarquezJohnson-ih9bq
    @MarquezJohnson-ih9bq 7 місяців тому +6

    Bro explains functions better than my professor 😭

  • @pienipupu
    @pienipupu Рік тому +41

    straight to the point, great explanation and good video length
    keep it up man

  • @mihailomilenkovic6382
    @mihailomilenkovic6382 11 місяців тому +20

    This guy does magic. My grades are all time high since i started watching these

  • @cherry.x_3806
    @cherry.x_3806 3 місяці тому +4

    This is honestly the best explanation I've heard yet. Really great and super simple! Great job 👏 ❤

  • @josephcraig7477
    @josephcraig7477 3 місяці тому +1

    Helped me a ton with my first functions assignment man! Thanks big time. I'll be coming back to your page for tips in the future for sure.

  • @100animations8
    @100animations8 Рік тому +11

    Great work, this tutorial is so clear & understandable.

  • @martynau3587
    @martynau3587 Рік тому +4

    Wow this tutorial is so easy to understand it's incredible!! Thank you so much

  • @robroszk
    @robroszk 2 місяці тому +1

    WOW! THANK YOU THANK YOU! Gonna sub to your channel. I was hitting my head against the wall trying to understand how functions worked. This really adds clarity in such a user friendly format. I am now a 'Bro Code' Subscriber Disciple!

  • @abdullahinadif6516
    @abdullahinadif6516 Рік тому +3

    Thank you so much , i didn't grasp the difference between "return" and "print" , but you made it easy in this video

  • @xzex2609
    @xzex2609 Рік тому +52

    no matter how advance I am now thanks to you , I always enjoy your videos. there always have some details that you learn. Gold bless you , you can not imagine how you help people.

    • @watermelonkfc
      @watermelonkfc 6 місяців тому +2

      And he donates most of what he earns to charity

    • @recursion.
      @recursion. 5 місяців тому

      @@watermelonkfc Charities are scam with full of incompetent time wasting people, I wish he used it for himself and his family and friends.

  • @Shabbar3
    @Shabbar3 5 місяців тому

    Dude. You are the shit. That was incredibly well spoken and actually landed in my brain stem properly. Love you dawg

  • @stevendumont4156
    @stevendumont4156 11 місяців тому +1

    Just awesome Bro. You make learning functions easy to understand in Python

  • @be236
    @be236 Місяць тому

    Wow, this is a great video! Nice and simple explanation! All tutorials should be like this!
    I've seen other videos with so complicated explanation of basic Python features and makes learning it so hard.

  • @johnsally8320
    @johnsally8320 Рік тому

    Bro, you're awesome. Thank you so so much!

  • @pirunnyrkki518
    @pirunnyrkki518 11 місяців тому +1

    This video has helped me understand such basic stuff that i could not wrap my head around, thank you.

  • @humerakaleem4937
    @humerakaleem4937 4 місяці тому +6

    why do we use f string

  • @PhrontDoor
    @PhrontDoor 7 місяців тому

    Well and succinctly presented. Thanks for sharing.

  • @tnr1337
    @tnr1337 3 місяці тому +1

    Dude, it was a really useful video because the teacher explained it in my own language (Turkish) and went through this topic without any explanation. Thanks to you, I understood the logic of "return".

  • @svbion
    @svbion 3 місяці тому

    My type of teacher. Simple and plain. Awesome job bro ✊

  • @wamimuswamimus3496
    @wamimuswamimus3496 11 місяців тому +1

    so far, this is the best video that helped me to understand def python command."
    I wish you you uploading move tutorial videos that explain in detail the concept of linking between argument and parameter and the logic behind it or how python picks those command and link them throughly.
    one thing I do not understand in this video is the "f" concept, when I've erased the answer that was gives is 4.1e1 instead of 42.5

  • @kapibara2440
    @kapibara2440 6 місяців тому +1

    Great, great content from the Bro🎉

  • @techwithdipufrom0ton621
    @techwithdipufrom0ton621 Рік тому +21

    No AI or any Robot can ever teach so explicitly like you Bro Code! You're an amazing teacher. I'd like to see a picture of your

    • @scientist100
      @scientist100 4 місяці тому

      but can teach very complex tasks. I can program an entire website with color schemes by just telling ChatGPT to do it for me. It can also show you how to interact with databases with any language; pretty cool if you ask me.

  • @MuhammadJamalAsadi-rv3od
    @MuhammadJamalAsadi-rv3od 18 днів тому

    I am Beginner in Python Thanks a lot from your easy videos Bro Code!
    keep it up!

  • @globaldatascience
    @globaldatascience 11 місяців тому

    Very easy way to convey difficult concept. Thanx

  • @for-ever-22
    @for-ever-22 8 місяців тому

    Bro you’re amazing!!!

  • @clivemcpike3065
    @clivemcpike3065 2 місяці тому +1

    bro, you literally saved my life. thankyousomuch!!!

  • @chillwavemusic5024
    @chillwavemusic5024 6 місяців тому

    My appreciation Bro!
    Your lessons as simple as valuable!

  • @Scott-hy3gs
    @Scott-hy3gs 7 місяців тому +3

    One video substituted a 30-page lecture, 🔥thank you

  • @hassansyed6087
    @hassansyed6087 11 днів тому

    "I think of parentheses as a pair of telephones talking to each other"
    I love on point analogies like this. It just helped me link so many things together with one good analogy.

  • @ramonbarajas2258
    @ramonbarajas2258 9 місяців тому

    The way you explain helps alot

  • @nonsorene1551
    @nonsorene1551 Рік тому +1

    Really love you Bro Code. I wish you could do a video on some backend frame work like Django

  • @Thinkerfre
    @Thinkerfre 4 місяці тому +1

    Your videos are great tf❤

  • @scottjeffery4583
    @scottjeffery4583 Місяць тому

    That's very helpful...Thanks Bro.

  • @thehorcrux1138
    @thehorcrux1138 Місяць тому

    Thanks so much. This should blow up more

  • @JosephPassi
    @JosephPassi 2 місяці тому

    Thank you so much for the easy to understand explanation. Appreciate it!

  • @user-wh7st7hc2e
    @user-wh7st7hc2e 5 місяців тому +1

    Хорошая рабочая связка Спасибо

  • @friedtofu6897
    @friedtofu6897 8 місяців тому

    great tutorial thank you

  • @psychehedelic
    @psychehedelic 3 місяці тому +1

    THANK YOU SO SO MUCH FOR THISSS

  • @cestlaviemarquez
    @cestlaviemarquez 2 місяці тому

    tks from Brazil, the best that we got in youtube

  • @tariqferoz5581
    @tariqferoz5581 Місяць тому

    This is very clearly explained, thank you.

  • @ramirez368
    @ramirez368 2 місяці тому

    simply amazing....

  • @balaportejean7015
    @balaportejean7015 26 днів тому

    So clear
    Thank you so much

  • @Etoxysia
    @Etoxysia 10 місяців тому

    Thank you so much! this is so easy to understand!!!

  • @sandrostupid7602
    @sandrostupid7602 10 місяців тому

    brocode im now learning a python and you changed my life you are real bro

  • @htg7127
    @htg7127 Рік тому

    You are the best teacher ever!!!

  • @erandreella2926
    @erandreella2926 6 місяців тому

    There's a language (or dialect) barrier going on in my college but thanks to you, you taught me a lot not to mention that this video is free, thanks.

  • @explorster
    @explorster 3 місяці тому

    Best coding videos on UA-cam 👍✌️

  • @jasonhammerle3582
    @jasonhammerle3582 10 місяців тому

    Nice! Makes perfect sense!

  • @kopilkaiser8991
    @kopilkaiser8991 Рік тому

    I watch you regularly. I learn a lot from your videos

  • @clebersouza5428
    @clebersouza5428 13 днів тому

    Bro, you helped me a lot, thank you. I'm not a native English speaker and I started to do a Harvard course recently. in the python subject, I was shocked with these functions, I did not understand why we use "def", because in python is "function". I know the name of the functionalities can change, but it wasn't so obvious at the first contact with the course.

  • @O_io6
    @O_io6 6 місяців тому

    God Bless You, Mate you helped me so so much.

  • @gamisr2848
    @gamisr2848 3 місяці тому

    Learning this this week in class. Nice video

  • @Sunwireless12
    @Sunwireless12 8 місяців тому

    I love ur videos!

  • @TeferiHagos
    @TeferiHagos 11 місяців тому

    You're an amazing teacher.

  • @b.nidhish4491
    @b.nidhish4491 2 місяці тому

    Thanks to this video it clears all my doubts

  • @GamingAngelx
    @GamingAngelx 3 місяці тому

    As a student you made so much more sense then my instructor thank you

  • @adrianarreguin1739
    @adrianarreguin1739 Рік тому

    Your channel is a godsend!

  • @arpitflow9
    @arpitflow9 3 місяці тому

    thanks you made it easy to understand, you gain a learner form India

  • @imashvyn
    @imashvyn 7 місяців тому

    Absolutely great❤

  • @binheptrai2k10nhuccainach3
    @binheptrai2k10nhuccainach3 4 місяці тому +1

    this is very useful thank you very much

  • @filipevasconcelos4409
    @filipevasconcelos4409 10 місяців тому

    Absolutely baller video for a newbie like me. Absolutely marvelous

  • @abyansh7073
    @abyansh7073 11 місяців тому

    you have no idea how much you help me !!!!!!!

  • @aaronpaulxo
    @aaronpaulxo 8 місяців тому

    mr.brocode, suppose i have this program to book movie tickets and i am inputting the values inside a function. I have to store it in a database, but the query insert doesnt execute outside the function loop and when it does execute inside the loop the values and stored in different rows since i have inputs from various functions. How can i insert the values from more than 1 function into the same row in mysql?

  • @javohirtoirov8793
    @javohirtoirov8793 Рік тому +2

    Hi bro pls do full course about django, it'll be better if you do full course about backend, I appreciate your work 👏👏

  • @miguellobo4841
    @miguellobo4841 6 місяців тому

    If someday I get my programmer job, trust me, I will come back to this channel to thank you, it may be many years, but if I get this job, thanks Bro Code ❤

  • @nathan8464
    @nathan8464 5 місяців тому +1

    You literally taught me more in 10minutes than my lecturer taught me in 10 hours

  • @youness1554
    @youness1554 Рік тому +2

    Big fan 🔱✌️

  • @ROLKISSSSSS
    @ROLKISSSSSS Місяць тому

    Just got new sub here. Good content

  • @dominickcharbonneau9250
    @dominickcharbonneau9250 6 місяців тому

    This really helped things click thank you 🙏

  • @CrazycatX
    @CrazycatX 9 місяців тому

    Love u bro

  • @ladyole9291
    @ladyole9291 Рік тому

    You made learning fun for me never quit youtube

  • @user-qv6eu1qi7w
    @user-qv6eu1qi7w 7 місяців тому

    Thank you bro you are wonderful

  • @fouadanabosi2858
    @fouadanabosi2858 Місяць тому

    I fucking love you Bro i understood functions in ten minutes rather than 2 weeks in my college. i owe you alot

  • @Ectro.aeptiktok
    @Ectro.aeptiktok Місяць тому

    one of the best programmer

  • @kaemiche7311
    @kaemiche7311 5 місяців тому

    You explained this perfectly.

  • @ThPl897
    @ThPl897 3 місяці тому

    If you wanted to loop it the many times you want it to repeat but it is too much to copy & paste, you could make a ‘loop’ parameter to your function:
    def your_func(loop):
    # Do what you want to do one time …
    for _ in range(loop):
    # Add built-in or module/packages functions …
    That’s an example using the ‘loop’ parameter.
    To run it:
    your_func(3)
    On the console it will do whatever you put in there.
    Hope that helps you run it 1000 times 😮

  • @user-bi6ie4ct6o
    @user-bi6ie4ct6o 4 місяці тому

    Good job. Thx Bro Code!

  • @naylintun5031
    @naylintun5031 9 місяців тому

    Understood sir

  • @robroszk
    @robroszk 2 місяці тому +1

    Was looking through your courses on UA-cam. Do you plan to offer a Pandas course too?

  • @bblaze34
    @bblaze34 Місяць тому

    @Bro Code, When you do f strings a good suggestion is explain to the viewers what an f string is. But besides that great vid! :)

  • @angryman5517
    @angryman5517 8 місяців тому

    love your voice man

  • @emmanuelmckinney419
    @emmanuelmckinney419 3 місяці тому

    best video by far

  • @funstories728
    @funstories728 Рік тому

    Thank God for this channel

  • @softlightstudios
    @softlightstudios 2 місяці тому

    Great video. One question though, why did you place f before the "Happy birthday' the print?

  • @Compuscience-Python-Prog-Exps
    @Compuscience-Python-Prog-Exps 3 місяці тому

    I use them for SUBROUTINES, since there are no line numbers, like in the
    old days of programming before object oriented programming.

  • @milevamaric9244
    @milevamaric9244 2 місяці тому

    this channel is a treasure

  • @avamariebarrientes
    @avamariebarrientes Місяць тому

    was totally stuck before this video. helped explain what i was doing wrong!

  • @stevena1425
    @stevena1425 22 дні тому

    My teacher taught me everything in python but thanks guy that was very helpful. I can. Understand it better

  • @unlock_don7647
    @unlock_don7647 Рік тому

    Your a great teacher bro

  • @kevinsenquiz902
    @kevinsenquiz902 6 місяців тому

    Great 👍🏽

  • @arjunmanoj5249
    @arjunmanoj5249 6 місяців тому

    Hi Bro.
    Great content.
    You're amazing.🎉
    Is there smtng that'd be done to get value from user in the output screen?
    Like:
    I know the code to do so.. but using def, I'm not really sure.
    It goes like-
    a=int(input ("enter the number))
    Here;
    int is integer data-type
    a = a variable
    I'm working on a simple code to get max of 3 nos using def
    I'm waiting for a positive response xoxo ❤

  • @bekturasanbekov1979
    @bekturasanbekov1979 10 місяців тому

    thx 4 vid bro !

  • @mohamad_subhi
    @mohamad_subhi 3 місяці тому

    really loved you 😊😊