Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Reading input data in python
- from __future__ import print_function #Compatibilidade func print python 2/3
- #Fix python 2 / python 3
- try: input = raw_input
- except NameError: pass
- nome = input('Informe o seu nome: ')
- idade = input('Informe a sua idade: ')
- idade = int(idade)
- 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