Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Mrinank-Bhowmick/python-beginner-projects
/ intValidtaion
Function
intValidtaion
projects/Loan Calculator/main.py:45–51 ·
view source on GitHub ↗
(question)
Source
from the content-addressed store, hash-verified
43
44
45
def
intValidtaion(question):
46
while
True:
47
try
:
48
value = int(input(question))
49
return
value
50
except
ValueError:
51
print(
"Input should be a valid number"
)
52
53
54
if
__name__ ==
"__main__"
:
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected