Advertisement
EXTREMEXPLOIT

isIntegrer

Jan 11th, 2020
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. def isIntegrer(N):
  2.     N = str(N)
  3.     i = N.index(".")
  4.     if N[i+1] == "0" and len(N) == i+2:
  5.         return True
  6.     else:
  7.         return False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement