When using the Geany editor:
print(¨Hello Python World¨)
 the double quotation character is replaced aotomatically by ¨ instead of " wich result in the syntax error below
Inline image 2

When typing the same line in Notepad the correct double quotation character is used,
print("Hello Python World")
I can now open the file using Geany and execute it correctly
Inline image 3

The cause of the SyntaxError is clearly demonstrated by opening the file that was created using Notepad, which is the first line below. The second line is typed in Geany and clearly show a different Character used for the double qutation mark
Inline image 4

How do I set up Geany correctly to avoid this Error?

Regards
danie