How do I configure Visual Studio Code VScode keeps giving same output from my first line of code
I create new Python file hello.py I type the following code
print("hello")
the output is
hello
but when I type another code
print("Hello World!")
the output is still the same
hello