I've created a Python script to get the mobile number from user
I need to get the number as integer
So I used,
Mobile=int(input("Enter the Mobile Number: "))
While running my program, if entered any character instead of integer, the program crashes and results in an error message.
But, my need is, it have to give the error message and have to run again for asking mobile number.
let me know the way please....!!