Python Forum
Kindly explain this error - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Kindly explain this error (/thread-19816.html)



Kindly explain this error - BlackList96 - Jul-16-2019

I am a beginner in python programming. Kindly help me to sort out the error. When I write the below code in IDLE it is giving me the right answer. But when I write it in Visual Studio Code editor it is giving me an error given below.

def add(x, y):
    print("Sum= ", (x+y))
add(5,3)
Error:
C:/Users/user/AppData/Local/Programs/Python/Python37-32/python.exe c:/Users/user/Desktop/test.py File "<stdin>", line 1 C:/Users/user/AppData/Local/Programs/Python/Python37-32/python.exe c:/Users/user/Desktop/test.py ^ SyntaxError: invalid syntax
I have already run very basic codes in VSCode but still getting this error for this code. Please explain this. Thanks in advance.


RE: Kindly explain this error - Yoriz - Jul-16-2019

There is nothing wrong with the code shown, how are you running the code within VSCode, that seems like it could be the problem.


RE: Kindly explain this error - millpond - Jul-16-2019

The problem is Visual Studio, which nay not be set right for Pyrhon. (You may nweed the #!path to python version header)

It works fine in a regular script file.

For an IDE type interface, might wat to try Anaconda. Some folks recommend Eclipse. As a beginner also, I like to keep things simple, so use a text editor.


RE: Kindly explain this error - perfringo - Jul-16-2019

(Jul-16-2019, 05:32 AM)millpond Wrote: The problem is Visual Studio, which nay not be set right for Pyrhon.

There are two distinct products Visual Studio and Visual Studio Code (VS Code).

VS Code is very well suited for Python and for beginners.


RE: Kindly explain this error - snippsat - Jul-16-2019

Have a tutorial here VS Code from start.