mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-11-01 04:07:48 +00:00
15 lines
285 B
Python
15 lines
285 B
Python
|
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
|