This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #DEIXO DESDE AQUI CLARO, SÃO EXEMPLOS BASICOS DE EXERCICIOS COM IF E ELSE | |
| #aula, basico de if e else | |
| nome = input('Digite seu nome:') | |
| if nome == 'gustavo': | |
| pass | |
| print('uau') | |
| print('Bom dia' ,nome) | |
| # desafios |