Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"files.autoSave": "afterDelay",
"screencastMode.onlyKeyboardShortcuts": true,
"terminal.integrated.fontSize": 18,
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Visual Studio Dark",
"workbench.fontAliasing": "antialiased",
"workbench.statusBar.visible": true
Expand Down
17 changes: 17 additions & 0 deletions exercicios/1-primeiros-passos/1-variaveis.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,25 @@
# - E não podemos usar palavras reservadas do Python, como if, for, from, etc.

# Declare variáveis do tipo string
nome = 'Sidney'

profissão = "Professor"

objetivo = '''Aprender Python
para mudar
de profissão
'''


# Declare variáveis de cada tipo numérico
idade = 43

salario = 8000.00

complexo = 2+1j


# Declare uma variável do tipo booleano
verdadeiro = True

falso = False
1 change: 1 addition & 0 deletions exercicios/1-primeiros-passos/2-string.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# Imprima na tela apenas a segunda letra da variável



# Imprima na tela a idade de Paloma (resposta esperada: "46")


Expand Down
3 changes: 2 additions & 1 deletion exercicios/hello-world.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#Digite print('Olá, mundo!')
#Digite print('Olá, mundo!')
print ('Olá, Mundo!')