yes, not a unix os but rather unix-like, and i want to program all of it on python, is that possible?? even the kernel, i want it all python. i know most kernels use c++ or c* but maybe python has a library to turn c* into python?? i’m still sort of a beginner but thanks and i would appreciate the answers
What you are looking for is some way to shortcut the process of learning to write an operating system by re-using your existing knowledge of Python.
(I’m not judging that; I understand why you want to do it)
The simple truth is that there is no way to do that. Any solution that involves using Python in a kernel would cost you more in terms of complexity and time than learning C would.
It is rarely worth it to use a language outside of the domains that it is normally used for.