@@TrajonJeter 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
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.
Amazing. Functions/arguments/parameters was a 3-hour long reading + video in my online Python class and I was so confused. My ADHD canNOT process so many words because I think all of them have equal importance. This, on the other hand, is absolutely amazing. Clear, concise, everything makes sense. THANK YOU SO MUCH!!!
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.
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".
Bro I’m learning coding for my future career, and this is the best channel I’ve seen! I’ve able to use to clarify some things and understand things better. Thank you!
literally the best video, couldn't really understand functions before but after watching this video i would say "functions in python are definitely easy" :)
This video is invaluable!!! THANK YOU SO MUCH. I am a beginner in Python and in an MS. Data Analytics program and this was SO HELPFUL. Also love how you give back to charities instead of keeping the money for yourself. Shows your integrity and thoughtfulness as a person.
"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.
I'm so glad i came across your channel. Your contents are amazing! Very detailed and even someone from zero IT background can learn and understand! Thank you!
It took me 4 years of studying in IoT school just to understaand how functions and so far only Bro Code explained it in a way that makes sense. Thanks bro.
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!
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.
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 😮
I'm not only learning functions today. I'm also learning that the teacher REALLY MATTERS, it was like u were chewing the knowledge and giving it to me. I feel like I could learn law, chemistry or some shit (I just have to choose the right teacher) THANKS MAN
Same...wish he was around back in the days, but of course that's the beauty of the net.. if you can find that person who can break it down nice and deliver like Bro.
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 ❤
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.
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
# ---------- 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)
Hello,when will you make node.js tutorial?
straight to the point
Thanks
We need more examples please 🥺
what does f mean before the double quote
No credit card, no bullshit, straight to the point. Impressed.
Man you be on the corn hub too much
169 likes and no comments? lemme fix that.
@@sanchitdangwal8950 😐
Yea
@@sanchitdangwal8950 🤡🤡🤡🤡🤡🤡🤡🤡🤡
I got more out of a 10 minute video than three weeks of my college course! This cleared so much stuff up for me!
hey, what do u take in ur course?
Your like the 20th person in college I’ve seen make a comment like that. I’m not going to college it seems like TH-cam university is good enough
@@TrajonJeter 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
yea same... I understood it ride away and it was on point. Our teacher is just so confusing when he is explaining stuff
I feel you
I was bro years old when I learned how to make a Python function. Thanks for the informative video!
😂😂
omg me too XD
TH-cam algorithm should show this type of good content more often
Just sub to them. My whole page is only codes);
My notifications are only coding videos
then sub
You need to hit the LIKE button.
@zssllayers1946 unsub from them and start clicking and subbing on tech videos
underated content
True
Yeah Mr. White
@zssllayers1946 right now i realised 💀
Fa real
Mr White this is not Chemistry, please take Science seriously
This guy does magic. My grades are all time high since i started watching these
You explain things better in 10 mins than I learn in a day studying from university materials.
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.
And he donates most of what he earns to charity
@@watermelonkfc Charities are scam with full of incompetent time wasting people, I wish he used it for himself and his family and friends.
You might just be the best tutor on TH-cam. Simple energetic and precise
Thank you
Amazing. Functions/arguments/parameters was a 3-hour long reading + video in my online Python class and I was so confused. My ADHD canNOT process so many words because I think all of them have equal importance. This, on the other hand, is absolutely amazing. Clear, concise, everything makes sense. THANK YOU SO MUCH!!!
Clear, simple, easy. Nicely done! Keep it up!
This is honestly the best explanation I've heard yet. Really great and super simple! Great job 👏 ❤
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
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.
a picture of his what?
☠️
@@jakethesnakemiz3645his
straight to the point, great explanation and good video length
keep it up man
By far the best explanation on Functions! Straight to the point!
Wow! The best explanation so far within just few minutes! Thanks!
Straight to the point and concise. Gotta love it🙌🏽
Straight to the point! No beating around the bush. It's as clear as a Windows 11 screen. Thank you and subscribed!
PhD professors couldn't teach me in 4 months what you just did in 11mins. Thank you is an understatement for what I wanna express.
This is by far the best explanation of functions I have ever come across. Thank you so much!
Dude. You are the shit. That was incredibly well spoken and actually landed in my brain stem properly. Love you dawg
Great work, this tutorial is so clear & understandable.
Great job. Can't wait to get into some of the other videos. Very well presented!
Literally the best python explanation that I've ever heard so far!! Thank u! 🎉
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".
Bro I’m learning coding for my future career, and this is the best channel I’ve seen! I’ve able to use to clarify some things and understand things better. Thank you!
literally the best video, couldn't really understand functions before but after watching this video i would say "functions in python are definitely easy" :)
This video is invaluable!!! THANK YOU SO MUCH. I am a beginner in Python and in an MS. Data Analytics program and this was SO HELPFUL. Also love how you give back to charities instead of keeping the money for yourself. Shows your integrity and thoughtfulness as a person.
I really apprecate your way of teaching👍
You are the first person I've found that's actually helpful. Thanks for the videos, you do a great job.
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.
"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.
I'm so glad i came across your channel. Your contents are amazing! Very detailed and even someone from zero IT background can learn and understand! Thank you!
One video substituted a 30-page lecture, 🔥thank you
It took me 4 years of studying in IoT school just to understaand how functions and so far only Bro Code explained it in a way that makes sense. Thanks bro.
for a nubie like me this is excellent content! Blessings Sir.
My type of teacher. Simple and plain. Awesome job bro ✊
one of the best videos ive ever seen\
thank you!!!!!!!
Bro explains functions better than my professor 😭
Very easy way to convey difficult concept. Thanx
I am Beginner in Python Thanks a lot from your easy videos Bro Code!
keep it up!
I go to an ivy league school and I am here because you explain things better than my professor does. Thank you so much!!!
which school?
You literally taught me more in 10minutes than my lecturer taught me in 10 hours
bro, you literally saved my life. thankyousomuch!!!
bro you are a lifesaver, it is so much simpler watching than reading
Youre not only helping me through university but also my other classmate. Love the good work. You live up to your name!
Short and simple. I love it! I couldn't understand the concept, but thanks to your vid, I understood it!
So concise and straight to the point. Thank you!
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!
Wow this tutorial is so easy to understand it's incredible!! Thank you so much
I started learning Python today, didn‘t understand functions at all, this vid was a life saver fr, thank you so much man
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.
Your explanations are so clear and understandable, just perfect. Thank u Bro!
thanks you made it easy to understand, you gain a learner form India
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 😮
Thank you so much , i didn't grasp the difference between "return" and "print" , but you made it easy in this video
Learning this this week in class. Nice video
Thank for you for making this video it was very easy to understand as a beginner
brocode im now learning a python and you changed my life you are real bro
Just awesome Bro. You make learning functions easy to understand in Python
Thank you bro, you made me understand in easy way.🎉🎉🎉🎉
crazy how this 10 minute video taught me more than my profs 3 hour lecture who just read off of powerpoint slides
Best coding videos on TH-cam 👍✌️
Explained it better than a college professor.
I'm not only learning functions today. I'm also learning that the teacher REALLY MATTERS, it was like u were chewing the knowledge and giving it to me. I feel like I could learn law, chemistry or some shit (I just have to choose the right teacher) THANKS MAN
This is very clearly explained, thank you.
that was awesome! u explained it way better that david in cs50p. i feel way more comfortable with the concept after watching this. thanx man!!
I fucking love you Bro i understood functions in ten minutes rather than 2 weeks in my college. i owe you alot
Thank you so much for the easy to understand explanation. Appreciate it!
wow this 10 minutes just cleared up more for me than a few hours in the Python section of Google's Cybersecurity course.
def calculate_paint_needed(width, depth, height):
numberofliters=((width*height)*2 + (depth*height)*2)/7
numberofliters=round(numberofliters,1)
liters= f"{numberofliters} liters of paint are needed"
return liters
This video has helped me understand such basic stuff that i could not wrap my head around, thank you.
your a really good teacher.
Bro are you a god ? best channel I have seen for learning coding you literally covered the whole concept in 10 minutes
Im at lesson 47 can't believe how much I learned lol
Love you for real
Same...wish he was around back in the days, but of course that's the beauty of the net.. if you can find that person who can break it down nice and deliver like Bro.
Well and succinctly presented. Thanks for sharing.
Thanks to this video it clears all my doubts
Хорошая рабочая связка Спасибо
Wow! Very helpful tutorial!
Great video I took a course and did not understand functions but now I do
I am never looking at another tutorial youtuber again after finding you
You are the Best Bro i learn more programming on you , than on my college
You are the best Bro! Great explanation!
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 ❤
this is very useful thank you very much
I can't thank you enough...this is going to be my saved video for lifetime...
P.S. you got a sub
tks from Brazil, the best that we got in youtube
Thanks so much. This should blow up more
TY ive been stuck on functions for so long i try avoiding them... no more of that thankfully
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.
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
You made learning fun for me never quit youtube
My teacher taught me everything in python but thanks guy that was very helpful. I can. Understand it better
Un vídeo muy conciso y explicativo 👌
Great, great content from the Bro🎉
awesome video you made this so much easier to understand so thx
You deserves a billion likes my bro😎✨️
It's really cool. ❤
Found that define function hard while doing cs50p, but u made it so easy and simple, thanks Bro. Subscribed.