Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- >>> def isnum(v):
- ... try:
- ... int(v)
- ... return True
- ... except ValueError:
- ... return False
- ...
- >>> isnum("hi")
- False
- >>> isnum("123")
- True
- >>> isnum(123)
- True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement