About 315,000 results
Open links in new tab
  1. Is it possible to create an operating system using Python?

    It is, however, technically possible to create an operating system centered on Python, that is; have only the very low level stuff in written in C and assembly and have most of the rest of the …

  2. What languages are Windows, Mac OS X and Linux written in?

    Feb 24, 2009 · The Windows API, the Windows kernel (both of these are in essence what an operating system is) are written in C. Years ago I was given some leaked code for both …

  3. operating system - Can Python make an OS similar to Windows?

    Mar 23, 2019 · @Neutrino maybe considering building some starter projects at this stage. Building an operating system requires a significant amount of work, dedication, commitment and …

  4. operating system - Is it possible to make a Python script its own …

    There is no reason why this couldn't be done with Python, it merely needs a bit of implementation work. To give a rough estimation of the amount of work: a caffeine-driven expert coder takes …

  5. Python on an Real-Time Operation System (RTOS) - Stack Overflow

    Feb 21, 2013 · Use Python accelerators to speed up your code. My first RT Python project greatly benefited from Psyco (yeah, I've been doing this a while). One reason I'm staying with Python …

  6. How to get the system info with Python? - Stack Overflow

    Jun 23, 2010 · #Shamelessly combined from google and other stackoverflow like sites to form a single function import platform,socket,re,uuid,json,psutil,logging def getSystemInfo ...

  7. Real-time operating via Python - Stack Overflow

    Aug 16, 2011 · Run the python interpreter on a real time operating system or tweaked linux. Shut down the garbage collector during the experiments and back on afterward. Maybe actively …

  8. How can I determine if the operating system a Python script is …

    Check if platform.system() is in a tuple such as ("Linux", "Darwin"). The problem with this is that I don't want to provide a list of every Unix-like system every made, in particular there are many …

  9. python - Why does Raspberry Pi need an OS to work? - Stack …

    Feb 25, 2018 · Without an operating system, you'll have to include all that functionality (or rather, the part of it that your task-specifc logic needs) into your program (that is called a "bare bones" …

  10. How can I find the current OS in Python? - Stack Overflow

    Sep 21, 2008 · >>> platform.system() 'Windows' >>> platform.release() 'XP' >>> platform.version() '5.1.2600' Here's a few different possible calls you can make to identify …

Refresh