Which IDE are you using now?
Which operating system do you have?
To create a subdirectory/subfolder you can use the "Save File As" dialog box of your IDE. There is a small icon in the top row you can click to create a new folder.
Oops now I know what you mean. The old fashioned IDLE does not start up with this default folder. I use DrPython a lot and that IDE lets you set the default folder and many other things. You can download it from:
http://sourceforge.net/projects/drpython/
DrPython has one quirk, it doesn't like foreign characters in its code window. It displays them but does not save then, giving you an error instead!
An IDE without this quirk is PythonWin from:
http://starship.python.net/crew/mhammond/win32/
vegaseat
DaniWeb's Hypocrite
5,976 posts since Oct 2004
Reputation Points: 1,345
Solved Threads: 1,416
Using something like
varak = 7
or even
print "varak"
in DrPython would give you an Encoding Error and wouldn't even save the code file!
PythonWin simply removes the symbol and converts it to the letter c. It does however take spanish and german symbols. I guess your exceeds the extended ASCII characters and gets you into unicode.
Bummer indeed, going international stops right there!
vegaseat
DaniWeb's Hypocrite
5,976 posts since Oct 2004
Reputation Points: 1,345
Solved Threads: 1,416
Do you have the wxPython GUI library installed?
If not, you need it and can get from:
http://wiki.wxpython.org/
or
http://prdownloads.sourceforge.net/wxpython/
Download wxPython2.5-win32-unicode-2.5.4.1-py24.exe (or in the US use the ansi version).
Maybe DrPython will work with foreign characters on your computer, it doesn't on the standard US MicroSoft machine.
vegaseat
DaniWeb's Hypocrite
5,976 posts since Oct 2004
Reputation Points: 1,345
Solved Threads: 1,416