Skip to content

Instantly share code, notes, and snippets.

@eliasalbuquerque
Last active December 4, 2023 20:52
Show Gist options
  • Save eliasalbuquerque/522d731a3e81ebc8f40b22a2852702fb to your computer and use it in GitHub Desktop.
Save eliasalbuquerque/522d731a3e81ebc8f40b22a2852702fb to your computer and use it in GitHub Desktop.
Curso Dev Aprender | Jhonatan de Souza

Código

# DESAFIO
variavel_1 = 25.87
variavel_2 = True
variavel_3 = 'Bom dia!'
variavel_4 = 15

print('DESAFIO')
print(type(variavel_1))
print(type(variavel_2))
print(type(variavel_3))
print(type(variavel_4))

Console

DESAFIO
<class 'float'>
<class 'bool'>
<class 'str'>
<class 'int'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment