MCPcopy 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
45def 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
54if __name__ == "__main__":

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected