Python How To Program Pt 7

preview_player
Показать описание
I answer the Python questions you sent including Error Handling, unconventional uses for functions, Examples using lists, how to use elif, Conditional Expressions and more.

Рекомендации по теме
Комментарии
Автор

After watching your tutorial on assembly and not understanding most of what you said I found your series on Python. I haven't cracked either book I picked up to learn Python. Your tutorials are fully understandable through part 7. Its late and need to retire for the night. Thanks.

MoTown
Автор

Thanks for shout out D. NTankman. You are the Messiah of Python. I love the exceptions part man, righteous, truly.. Like grease to slick up the wheels, keep the program rolling. Thats what I'm talkin bout. I like it!! I love the unconventional stuff, straight outside the box. Ya.

gent
Автор

@gent2910 More Python video's are coming. I'll cover the often confusing Regular Expressions later today

derekbanas
Автор

@designernasser Thank you. I continue teaching Python in my Regex Tutorial, where I show you how to automate websites. Hope you like that too.

derekbanas
Автор

if "YOUR" = __possession__ && "YOU'RE" = __contraction__:

print("YOUR usage of the words is correct, YOU'RE good at this")
else:
print(`"YOU'RE killing me with YOUR mangling of the contraction YOU+ARE")


Derek, you just cannot work with folks who have OCD and get away with this kind of thing. ;-)


As always, I love your videos. You have given me Java and Python in days where everyone else just wasted my time. YOU'RE awesome and YOUR teaching style is almost perfection (except for YOUR mangling of the contraction YOU'RE).

jameswhite
Автор

Amazing exception handling demonstration! Helps for more languages than just python too. Thank you

ThinkPositive
Автор

Dude your tutorials are godlike! I  tried to experiment with the codes and commands and learned everything you showed in your vids in one day!
R8 10 / 10

puppetmaster
Автор

No there are tutorials on using python with regular expressions and how to create automated sites using python as a final project. I then cover more in the python 2.7 tutorial series

derekbanas
Автор

Sorry I couldn't get to you quicker, but I'm glad you figured it out :)

derekbanas
Автор

You're very welcome :) I'm glad you enjoyed them

derekbanas
Автор

Thank you :) I wish you the best as well.

derekbanas
Автор

Thank you and you're very welcome :)

derekbanas
Автор

@AustinOrmondeVEVO I made one in PHP Web Design and Programming Pt 21. If you understand the core concepts you can translate this into python

derekbanas
Автор

MORE! WE WANT MORE TUTORIALS! I want to learn everything I can about Python and your tutorials are so perfect for me! You explain everything so well. Please continue making these tutorials. I want to learn advanced Python. My end goal is to design a program with a nice GUI for my headunit that can control 4 stepper motors and set them to individual positions (this is to adjust my suspension dampening). I also want to make a better car diagnostic tool that I can access through my touch screen headunit that taps into the car's computer via wifi dongle with my raspberry pi 2.

thwrightstuff
Автор

Thanks for this great video. The last example seems there is still error if we don't enter the first input or second input. The error is when you tried to put a non-numeric var in int(), then ValueError comes.

yuchangchen
Автор

i watched all the series, thank-u Derek. i probably shud've watched 2.7, am gonna catch up on it

mattdathew
Автор

I think you should put the try block in the main method. Like:
firstVal = input("Enter the first numbr: ")
secondVal = input("Enter the second numbr: ")
try:
divideNStuff(int(firstVal), int(secondVal))
except ValueError:
print("Inputs must be numbers")

yuchangchen
Автор

Okay I need to say you are completely awesome and I HAVE A CRUSH ON YOU!!

tamquen
Автор

The next part of this tutorial goes into regular expressions with python. Then I go into Python 2.7 which I cover more completely

derekbanas
Автор

I wish you both best for your future together.

tamquen