Python Programming Tutorial - 13 - Return Values

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

"My ear is itching, ma ear is itching, now I itched it, and I'm ready to move on"
- Bucky Roberts, 2014

vigneshas
Автор

Now _this_ is how you make a tutorial.

hrnekbezucha
Автор

Bucky, teaching life skills since 2010 xD

camelCaseFTW
Автор

so when i was 2 i could date girls that were 8?

bartosik
Автор

Python is such a weird language. I'm getting used to it; but since I was started on c++ and javascript I just have a huge need of putting semicolons at the end of everything.

nateDawg
Автор

4:31 "I don't have any friends at all" - When life hits you hard

abdullahsaeed
Автор

def allowed_dating_age(my_age):
girls_age = my_age/2 + 7
return girls_age

for n in range(15, 61):
print("The person's age is ", n, " and are allowed to date people ", allowed_dating_age(n), " or older than them.")

BlackHawkDaBulgarian
Автор

Your personality and way of explaining information make these tutorials very useful, great job!

viki
Автор

bucky my gf is 19, your test says i can date 20 only, should i dump her?

allthepussy
Автор

I am pissed about this ad of udemy, everytime it pops up I can feel my ear bursting

collegetv
Автор

return means store its value from the function and use it later

chaosui
Автор

Bucky at his best!! If all tutorials would have been like this many more people would have learned programming...

hemukalyandurga
Автор

Well Bucky, thank you for making programming fun:D, without your vids I'd never learn this much programming languages:), you're the best!:)

istvanagoston
Автор

This is the best and most practical Python tutorial on YouTube, thank you. Sub'd!

kf
Автор

Thanks Bucky, for some reason Return was confusing me when its actually quite simple, after you explained it. Hope your helpfulness turns into karma & you get a date.

duncanwallace
Автор

Nice tutorials! i really understand python in depth now!

ThaNewhacker
Автор

I'm 20. i can date 17 year olds :D

*sirens blaring in backgroudn*

gershoma
Автор

see this is why i love bucky, (no homo)
but he includes so much humor into his videos that its just fun to learn from him. GO BUCKY!

alanweng
Автор

def allowed_age(my_age):
her_age=my_age/2+8 #Add eight years because 7 is pushing it
return her_age

for x in range (15, 61):
man_limit = allowed_age(x)
print(x, "year old men can date", man_limit, "old women.")

AstonishingStudios
Автор

I bit late for the challenge but still here is what i did :D
Really great videos bucky :)

def allowed_dating_age(my_age):
girls_age = my_age/2 + 7
return girls_age

for n in range(15, 61):
limit = allowed_dating_age(n)
print("The person aged ", n, "can date girls", limit, "or older")

ganeshvicky