FizzBuzz
authorEmmanuel M. Gonzalez <DrakoPD@users.noreply.github.com>
Tue, 3 Nov 2020 21:16:01 +0000 (17:16 -0400)
committerEmmanuel M. Gonzalez <DrakoPD@users.noreply.github.com>
Tue, 3 Nov 2020 21:16:01 +0000 (17:16 -0400)
.vscode/launch.json [new file with mode: 0644]
fizzbuzz/drako.py [new file with mode: 0644]

diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644 (file)
index 0000000..d73bf2a
--- /dev/null
@@ -0,0 +1,16 @@
+{
+    // Use IntelliSense para saber los atributos posibles.
+    // Mantenga el puntero para ver las descripciones de los existentes atributos.
+    // Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
+    "version": "0.2.0",
+    "configurations": [
+        
+        {
+            "name": "Python: Archivo actual",
+            "type": "python",
+            "request": "launch",
+            "program": "${file}",
+            "console": "integratedTerminal"
+        }
+    ]
+}
\ No newline at end of file
diff --git a/fizzbuzz/drako.py b/fizzbuzz/drako.py
new file mode 100644 (file)
index 0000000..62357c1
--- /dev/null
@@ -0,0 +1,9 @@
+for i in range(1,101):
+    no = 1
+    if i % 3 == 0:    
+        print("Fizz", end = '')
+        no = 0
+    if i % 5 == 0:
+        print("Buzz", end = '')
+        no = 0
+    print (i if no else "")
\ No newline at end of file