--- /dev/null
+{
+ // 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
--- /dev/null
+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