Advertisement
wagner-cipriano

Reading input data python

Oct 13th, 2016
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. #Reading input data in python
  2. from __future__ import print_function      #Compatibilidade func print python 2/3
  3.  
  4. #Fix python 2 / python 3
  5. try: input = raw_input
  6. except NameError: pass
  7.  
  8. nome = input('Informe o seu nome: ')
  9. idade = input('Informe a sua idade: ')
  10. idade = int(idade)
  11. print('Seu nome e', nome, 'e voce tem', idade, ['anos.', 'anos e voce e menor de idade.'] [idade < 18] )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement