commit aula2

This commit is contained in:
Simon Gonçalves Costa 2026-03-20 20:25:30 -03:00
parent 54b6b0d484
commit f715cb7c7d
3 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
a = 20
a = 3.1415
nome = "Simon"
total = 4596
resultado = 45.45
logico = True
print(type(a))
print(type(nome))
print(type(total))
print(type(resultado))
print(type(logico))