fork(1) download
  1. # your code goes here
  2.  
  3. i = raw_input(">")
  4.  
  5. if i.isdigit():
  6. print "Nice numer"
  7. elif i.isalpha():
  8. print "Word"
  9. else:
  10. print "Number and word"
  11.  
  12.  
Success #stdin #stdout 0.01s 9016KB
stdin
224a
stdout
>Number and word