diff --git a/index.html b/Aula1/index.html similarity index 100% rename from index.html rename to Aula1/index.html diff --git a/nova_pagina.html b/Aula1/nova_pagina.html similarity index 100% rename from nova_pagina.html rename to Aula1/nova_pagina.html diff --git a/TopicosAvancados/tipagem.py b/TopicosAvancados/tipagem.py new file mode 100644 index 0000000..776e518 --- /dev/null +++ b/TopicosAvancados/tipagem.py @@ -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))