Functions in Python are easy 📞

preview_player
Показать описание
#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):
return first + " " + last

full_name = create_name("spongebob", "squarepants")
print(full_name)
Рекомендации по теме
Комментарии
Автор

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

BroCodez
Автор

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

TheGeekosDen
Автор

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

brysontrotman
Автор

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

radiantthoughts
Автор

YouTube algorithm should show this type of good content more often

SomethingGood
Автор

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.

xzex
Автор

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

techwithdipufromton
Автор

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

mihailomilenkovic
Автор

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

pienipupu
Автор

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

ddmorales
Автор

one of the best videos ive ever seen\
thank

muhammadahsanali-pqer
Автор

Straight to the point! No beating around the bush. It's as clear as a Windows 11 screen. Thank you and subscribed!

habibmaryam
Автор

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!

TypeAlpha
Автор

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

cherry.x_
Автор

Great work, this tutorial is so clear & understandable.

animations
Автор

literally the best video, couldn't really understand functions before but after watching this video i would say "functions in python are definitely easy" :)

khubaibfarhan
Автор

You are the first person I've found that's actually helpful. Thanks for the videos, you do a great job.

shine
Автор

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".

tnr
Автор

I really apprecate your way of teaching👍

Best_Editz
Автор

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.

xgtvvuk