Hello, I need your help, I'm using Eclipse and Pydev plugin as python IDE.
I have configured and set environment variables, libraries etc etc I created a project, and a module.
When I write these lines and run the program, it gives an error:
`a = 3
b = 4.6
print "%d is the value of a, %.2f is the value of b" %(a, b)`
and the error message is:
SyntaxError: Non-ASCII character '\xfd' in file C:\Users\dell\workspace\Deneme\src\test1\o3.py on line 9, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
However, when i write the same lines in IDLE, it runs without errors.
What is wrong with Pydev??