Python Programming Tutorial #18 - Try and Except (Python Error Handling)
Key Takeaways
Teaches try and except error handling in Python programming
Full Transcript
hey guys welcome back to another video this is the eighteenth video in my Python programming series and today we're going to be talking about something called a try and accept block of code so just like we talked about the if-else and Elif block of code and like we talked about the for loop which is a block of code and like functions which are blocks of code we're gonna be talking about to try and accept so in Python we use try and accept as our keywords and other languages you may have heard of try and catch statements this is the same thing except in Python instead of catch we use accept okay so let's talk about what a try and accept statement is sometimes in Python you want to do an operation or you want to try something but you don't know if it's really going to work or not there's some different variables they may come in sometimes it may work sometimes it may not work usually this depends on user input or what the user is doing in the program so a good example of this is maybe if we're validating a form so we'll do an example you would say text is equal to input like this and then we'll say username okay now in typical user names you're only allowed certain characters maybe you can't do a comma you couldn't do a star certain things like that right maybe we only want it to be text so we only want it to be numbers we just want to validate this we could use a huge if statement to do this but instead there's something called a try and except that we can use so in this case I want my username to only be numbers so I don't want it to be string at all I want it to only be numbers so what I'm going to do is I'm going to make a new variable here and I'm going to call it number and all I'm going to do is I'm going to try to int the text like this okay so if you remember what the int does is that simply converts our string into an integer and then I'm going to print that to the screen so I'm going to print number to the screen now what happens right here is if I try to type in a word like this you see we get an error it says there's an invalid literal for inks with base 10 now you don't have to understand what this error is pretty much all this means that we can't convert too low into a number because there is really no number there how how does it know what number to make that into right so in this case we would use a try and except look because if the user types in something that's invalid well we want them to type in something else we don't want the program to crash like it just did there so here I'm going to put a try like this followed by a colon and then I'm going to indent these two blocks right here so that means we're going to try this block of code okay and then underneath here I'm going to type except just like that followed by a colon now there is a more advanced way to do this we can accept a specific type of error but I'm not going to talk about that in this video this is just a very basic try and accept block and then under here I'm going to type what I want to happen if this block of code doesn't run meaning this block of code returns an error and we can't actually execute it so in this case I'm just going to do I'll just print to the screen invalid username because remember we're only going to have our username contain numbers all right so now if I run the program and I try to type in something that is not a string so just I mean that is not a number like this it will just say invalid username rather than crashing the program which is what happened before and if I do try to type in something that is valid so maybe I type one two three four it just gives me that username back right so it works like that um so that's pretty much how we try and accept works again this is a very basic example that's what I try to do in my videos just give you the basics and then you can try to apply it to some projects you're doing and some more advanced things so again what happens is it tries this block of code if that block of code doesn't run or an error happens instead of simply crashing the program and giving us that red message it's going to go to this except block and it's going to do whatever's in here now in this except block again we could ask them to type in a new username we display another message we could maybe close the program on them we could do whatever we want to do in this accept block and it's extremely useful so yeah that's pretty much how the try and accept works if you've learned something please like and subscribe and I will see you again in another video
Original Description
Try and Except in Python - Error Handling Tutorial
This is the 18th video in my python programming series and today I talk about how to handle python errors using the try and except python code block.
Text-Based Tutorial: https://techwithtim.net/tutorials/python-programming/beginner-python-tutorials/error-handling-try-except/
Video Tags: python,python tutorial,python language,python full course,python course,learn python,learn python programming,python tutorial for beginners,python tutorial 2018,python programming tutorial,python programming language,software development,programming tutorial,tech with tim
Watch on YouTube ↗
(saves to browser)
Sign in to unlock AI tutor explanation · ⚡30
Playlist
Uploads from Tech With Tim · Tech With Tim · 20 of 60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
▶
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
A* Path Finding Algorithm(Visualization)
Tech With Tim
Python Programming Tutorial #1 - Variables and Data Types
Tech With Tim
Python Programming Tutorial #2 - Basic Operators and Input
Tech With Tim
Python Programming Tutorial #3 - Conditions
Tech With Tim
Python Programming Tutorial #4 - IF/ELIF/ELSE
Tech With Tim
Python Programming Tutorial #5 - Chained Conditionals and Nested Statements
Tech With Tim
Python Programming Tutorial #6 - For Loops
Tech With Tim
Python Programming Tutorial #7 - While Loops
Tech With Tim
Python Programming Tutorial #8 - Lists and Tuples
Tech With Tim
Python Programming Tutorial #9 - Iteration by Item (For Loops Continued...)
Tech With Tim
Python Programming Tutorial #10 - String Methods
Tech With Tim
How to Overclock a NVIDIA GPU
Tech With Tim
Python Programming Tutorial #11 - Slice Operator
Tech With Tim
Python Programming Tutorial #12 - Functions
Tech With Tim
Python Programming Tutorial #13 - How to Read a Text File
Tech With Tim
Python Programming Tutorial #14 - Writing to a Text File
Tech With Tim
Python Programming Tutorial #15 - Using .count() and .find()
Tech With Tim
Python Programming Tutorial #16 - Introduction to Modular Programming
Tech With Tim
Python Programming Tutorial #17 - Optional Parameters
Tech With Tim
Python Programming Tutorial #18 - Try and Except (Python Error Handling)
Tech With Tim
Python Programming Tutorial #19 - Global vs Local Variables
Tech With Tim
Python Programming Tutorial #20 - Classes and Objects
Tech With Tim
Cool VBS Script to Prank Your Friends!
Tech With Tim
How to Overclock an AMD GPU
Tech With Tim
Best GPU'S For Mining Ethereum (2018)
Tech With Tim
Recursion and Memoization Tutorial Python
Tech With Tim
Ethereum Mining Rig - Hardware Guide
Tech With Tim
Pygame Tutorial #1 - Basic Movement and Key Presses
Tech With Tim
How to Install Pygame (Windows 8/10)
Tech With Tim
How to Trade Your Cryptocurrency (Bitcoin, Ethereum etc.) For Cash!
Tech With Tim
How to Mine Ethereum 2018 - WORKING (Super-Easy)
Tech With Tim
Microphone Comparison - $10 Mic vs $150 Mic (Blue Yeti USB)
Tech With Tim
Pygame Tutorial #2 - Jumping and Boundaries
Tech With Tim
Pygame Tutorial #3 - Character Animation & Sprites
Tech With Tim
Pygame Tutorial #4 - Optimization & OOP
Tech With Tim
OBS Studio Tutorial - Best OBS Settings
Tech With Tim
Linear Search Algorithm - Python Example and Code
Tech With Tim
Make Any Mic Sound AMAZING! (WITH OBS)
Tech With Tim
Binary Search Algorithm - Python Example & Code
Tech With Tim
Pygame Tutorial #5 - Projectiles
Tech With Tim
Pygame Game - Mini Golf
Tech With Tim
Pygame Tutorial - Projectile Motion (Part 1)
Tech With Tim
Pygame Tutorial - Projectile Motion (Part 2)
Tech With Tim
Pygame Tutorial #6 - Enemies
Tech With Tim
Pygame Tutorial #7 - Collision and Hit Boxes
Tech With Tim
Pygame Tutorial #8 - Scoring and Health Bars
Tech With Tim
Cloud Mining vs. Hardware Mining - 2018
Tech With Tim
How to Install Pygame on Mac OSX (Fast-Simple)
Tech With Tim
Pygame Tutorial #9 - Sound Effects, Music & More Collision
Tech With Tim
Pygame Tutorial #10 - Finishing Touches & Next Steps
Tech With Tim
How to Fade Your Screen in Pygame [CODE IN DESCRIPTION]
Tech With Tim
How to Create a Button in Pygame [CODE IN DESCRIPTION]
Tech With Tim
Pygame Side-Scroller Tutorial #1 - Scrolling Background/Character Movement
Tech With Tim
Pygame Side-Scroller Tutorial #2 - Random Object Generation
Tech With Tim
Pygame Side-Scroller Tutorial #3 - Collision
Tech With Tim
Pygame Side-Scroller Tutorial #4 - Scoring and End Screen
Tech With Tim
How to Create A Message Box in Python - Tkinter
Tech With Tim
Is Ethereum Mining Still Profitable - Is It Worth It (April 2018)
Tech With Tim
How to Run MAC OSX on a WINDOWS PC (Clover Boot-loader)
Tech With Tim
Programming Problem #1 - Alphabet Soup (Beginner/Novice)
Tech With Tim
Related Reads
📰
📰
📰
📰
Why AI Increases the Need for Platform Engineering
Dev.to AI
AI for CS Assignments: How I Survive Technical Writing (Without Completely Dreading It)
Dev.to AI
I built RepoLens: a repo docs, diagrams, security report & AI chat, from one knowledge graph
Dev.to · OnamSharma
Can we use AI for academic writing? It depends:
Medium · AI
🎓
Tutor Explanation
DeepCamp AI