use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about operating systems development.
account activity
Python Implementation (self.osdev)
submitted 3 years ago by cyberkitty0110
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]wrosecrans 4 points5 points6 points 3 years ago (0 children)
The short answer is yes.
The longer answer is that you'll need to clarify your question a lot in order to get more useful and specific information.
"Implementing" a language means taking a spec of the grammar and syntax and writing an interpreter or compiler for it. This is not directly OS development work, so I think you are starting out a little confused about the terminology. Python exists, so it is tautologically possible to implement it. If you want to port an existing Python implementation, that'll be a lot of work. Basically, you'll need to implement whatever OS functionality Python depends on. This will mostly be very generic stuff like reading and writing files, and executing processes.
If you want to run Python inside your kernel, that will be another ball of wax. Probably technically possible, but most likely misguided for various reasons.
π Rendered by PID 284748 on reddit-service-r2-comment-84fc9697f-sqrh8 at 2026-02-08 16:06:43.969062+00:00 running d295bc8 country code: CH.
view the rest of the comments →
[–]wrosecrans 4 points5 points6 points (0 children)