Skip to content

Instantly share code, notes, and snippets.

View asjr-p's full-sized avatar

Paulo Silveira asjr-p

View GitHub Profile
@asjr-p
asjr-p / aula2_c.py
Last active April 7, 2019 00:51
PpE - Aula 2 - Variáveis
var_int = 10
var_string = "texto"
var_float = 3.14
print(var_int)
print(var_string)
print(var_float)