Advertisement
AnandaVieira

Exercicio 2

Feb 25th, 2021
665
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. # 2 - Faça um Programa que peça um número e então mostre a mensagem O número informado foi [número].
  2.  
  3. num = int(input('Digite um valor: '))
  4. print('O número informado foi: [',num,']')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement