We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5229b commit fb79c57Copy full SHA for fb79c57
.vscode/launch.json
@@ -0,0 +1,15 @@
1
+{
2
+ // Use o IntelliSense para saber mais sobre os atributos possíveis.
3
+ // Focalizar para exibir as descrições dos atributos existentes.
4
+ // Para obter mais informações, acesse: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "Depurador do Python: Arquivo Atual",
9
+ "type": "debugpy",
10
+ "request": "launch",
11
+ "program": "${file}",
12
+ "console": "integratedTerminal"
13
+ }
14
+ ]
15
+}
anwers/lvl_1/level_1.py
@@ -9,3 +9,8 @@
# Hints:
# Consider use range(#begin, #end) method
+numbers = []
+for n in range(2000, 3200):
+ if (n % 7 == 0) and (n % 5 != 0) :
+ numbers.append(str(n))
16
+print(",".join(numbers))
0 commit comments