Visual studio code running python3 scripts
Sorry, guys, it's me again, I'm practicing the FIZZBUZZ code in Visual Studio Code, I use something like: for i in range(n) if n % 5 == 0 and n % 3 == 0: print("FizzBuzz!") elif n % 5 == 0: print("Fizz") elif n % 3 == 0: print("Buzz") else: print(n) So, when I run (with F5) the script, Visual Studio Code runs the script like several time and not only once as I want(and I think as a beginner that I am that should be), is there a way to fix that on the Visual Studio Code settings for debugging or something, it's frustrating for me. Sorry if this question is out of scope in SoloLearn, but I've tried to find the solution online and in the Visual Studio Code website, maybe I'm not browsing properly the inquiry but I haven't found a solid answer or even something similar to my question. Thanks in advance! Enjoy your weekend, life is short and good!