Guest User

Untitled

a guest
Jul 16th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. def main():
  2.      dojo = input()
  3.      print(type(dojo))
  4.      
  5.      if type(dojo) is int:
  6.          print('This input is of type Integer.')
  7.      else:
  8.          print('This is something else.')
  9.  
  10.  
  11. main()
Add Comment
Please, Sign In to add comment