mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2025-01-09 10:12:50 +00:00
Merge pull request #1 from damoklov/damoklov-patch-1
Added useful Python file for checking input data
This commit is contained in:
commit
06f56f46c0
14
code/try_except.py
Normal file
14
code/try_except.py
Normal 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
|
Loading…
Reference in New Issue
Block a user