Added useful Python file for checking input data

You can experiment with this file, add smth to it and use in your modules. 
Example of usage:

>>>123
>>>Correct!

>>>fsda12
>>>ValueError

>>>
>>>Enter something
This commit is contained in:
damoklov 2018-10-06 23:31:37 +03:00 committed by GitHub
parent 4da95e9a22
commit 5924cea46f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

14
code/try_except.py Normal file
View File

@ -0,0 +1,14 @@
while True:
line = input()
if line:
try:
a = int(line)
print("Correct!")
exit(0)
except ValueError as vr:
print("Value Error:",vr)
continue
else:
print("Enter something")
continue