Python for Informatics - Chapter 4 - Functions

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

You've explained in 28 minutes what my lecturer took a week to explain and I still understood your style better! Thanks a million!

ThePowerchimp
Автор

Wow. So much better than my university lecturer whom I am completely unable to understand. So logical, so helpful and very easy to understand. Thank you so much. I finally understand functions. This is great. Will recommend to all my friends. 

ToxicFallenAngel
Автор

lol he is an awesome teacher with a great personality. We need more professors like him in school. I have been taking his python class online and he has made it so much fun to learn. I love programming again because of him. I took a C++ class at Michigan State and hated it. The teacher was a bore and just made everything much more confusing with her teaching methods.

nasonkye
Автор

This python2 course has me so enthusiastic about programming and it's only chapter 4. I really enjoy the combination of this video and textbook that goes along and I look forward to the python3 materials. So far I have been able to make a few games and tools that have been fun to watch my kid play with and they also inspire him and expose him to python

bobanmilisavljevic
Автор

Wow, I went through so many videos and no one explain better than you ! thank you for your video, im looking forward for chapter 5

melkumov
Автор

Thank you Prof. Severance for making this programming easy to understand. I enjoyed your lectures.

sun
Автор

you are the best explainer in the whole world, and you are funny too, and make things easy to understand.

mazvitaguvi
Автор

I just updated the description to include a link to my playlist.

ChuckSeverance
Автор

Haven't even gotten to the teaching portion yet, an I already love this.  You seem like a pretty awesome teacher! I've been learning Python, and it's great to have some mellow comic relief. 

JackBullenskie
Автор

Great video which has helped me more than you can imagine. Thanks Chuck!!

_Superb-AD
Автор

Thank you for posting this! It's going to help me get through Fundamentals of Programming.

mrpaupie
Автор

Teaching is a skill and you definitely got it and then some. Subbed.

georgenikou
Автор

Really enjoyed this video, thank you.

laspalmasmaya
Автор

Sir please write with dark color over green, , it will be more visible.

aniruddhshrivastava
Автор

Thank you very very much, this is infinitely useful for me. Thanks.

Devilathor
Автор

Am I the only one that had an error in my brain trying to understand why "w" was the "max" and " " was the "min" in Hello world? How does Python determine that? My brain hurts. Love the Harry Potter intro!

r.carter
Автор

for exercise 4.7 i couldn't figure out how to define "Bad score", if the input was a string?

tmillar
Автор

Does anyone know why this is not working I know it is not full proof. ie 168 hours in a week etc. But, I thought it should at least work.

def computepay(hr, rt):
if hr > 40:
num = ((40*rt)+((hr-40)*rt*1.5))
return num
elif hr > 0 and hr <= 40:
return hr * rt
else:
return 0



hours = raw_input('Enter Hours:')
Rate = raw_input('Enter Rate:')
pay = computepay(hours, Rate)
print('Pay:'+ str(pay))

MohamedMohamed-gjlm
Автор

Does anyone else notice he has the Sorting Hat in the background?

hiddenmoth
Автор

Why does type(10) function outputs <type 'int'>, but when I want to use in a comparative statement I have to only use int? For example, type(10) == int is true.
Is there a reason why type(10) returns this weird string, instead of just int?

sanshinron