Hi,
now, if i wish to create a python-like lingo for my os, how on earth do i go about it??
Why not just port Python when your OS is ready?
now, if i plan to write my own os, it would be a nice idea to have a built-in language for general programming. and maybe some scripting for automation as well.
If you port Python you get both! If you had the will you could even make the Python interpreter your OS shell
--
Ok, seriously now...
If you were to write a Python-like language you would need to go about writing an interpreter. There's a lot of documentation about compiler writing on the internet - your interpreter is a lot like a compiler except it doesn't generate assembly (or machine code) but rather performs actions as they're read in the script. If you do it well enough your modules can be like Python's - ie, mostly written in Python (with shared objects at the lowest level).
I also strongly suggest you try writing a small BASIC interpreter or something before you take on something as big as a Python-style language.
Hope this helps a little!