Error Handling - Python 3 Programming Tutorial p.9

preview_player
Показать описание
In this tutorial, we're going to talk some more about other things that can go wrong and how to handle for those errors.

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

This guy is drinking coffee in every video just to brag his mugs. Thx for the tutorial

oscardanielcorneliocastro
Автор

4:06 just also learned you have to point the cmd prompt to the same directory where you have the tutorial files saved.

extrememike
Автор

3:00 mind = blown, how did I not know ths yet?

Maxtasy
Автор

I'm enjoying your tutorial, many thanks.
For user input tomfoolery I also enjoyed adding;
except TypeError as e:
print("Error: You've entered a letter DUMB-ASS! MUST be number 0 1 or 2!", e)
to the try loop :b

GalacticAccident
Автор

3:48 you can get out with CTRL+Z and then ENTER

devi_buns
Автор

How is it possible that this guy has a few likes on the best python tutorial?

Daniel-eesx
Автор

3:01 woah, noice, I learned a new trick for Windooze! Had not expected this! :D

GGShinobi
Автор

Hey sentdex i watched +practiced your old 'python series for beginners' till OOP but man i still can't do any basic projects by myself. Am i dumb or smth or do i need to practice these tutorials as well ?

woahart
Автор

Snap back to reality, oh there goes gravity

nwgverified
Автор

I’m actually thank thankful for this vid

jackjackson
Автор

I’m using a MacBook and was not able to follow along in the terminal component of this video. 😢 are the prompts different?

jameserswell
Автор

You can run a terminal in Windows as you do it in Linux by pressing shift + right click and then select run command prompt

adrianremonda
Автор

"You can't get out with ^C". You can exit using ^C under *nix systems (Linux/Mac, even WSL). You can also use ^D (EOF), but that also does not work under Windows.

wilfreddevries
Автор

Thanks - good tut. You have run out of funny mugs :)

freeelectron
Автор

Did anyone else laugh when he said "Done Goofed" at 9:35?

joemama
Автор

Doubt: What happens if it does not show the same version when we type 3.7 in cmd (4mins. in the video)

shubhipande
Автор

I love your tutorials! But I wish your screen was not that zoomed in, it would be nice to see more of the code at the same time.

Francisv
Автор

what was the whole purpose of game_map, is it to rectify the problem with not being able to change the game value without using the global keyword. ??? Can someone explain what he meant

alenjose
Автор

He recorded part 8 at 2:45 AM and part 9 at 6:30 AM and doesn't even look tired

nowybopes
Автор

Hi all, I have a question here. I inserted an undefined variable as a parameter while calling the function in order to raise a NameError. For example: game_board(eee, player=1, row=1, col=1), where "eee" is the undefined variable. I thought this error will be included in the except Exception block but it does not work, can anyone help me with this?

yoke