Our great sponsors
-
C usually uses a compiler. For various reasons, writing a compiler for Python is hard so we usually use interpreters. That means we need a program (in machine code, so your computer understands it) that can interpret the Python code. Since we don't generally like writing machine code, we tend to write these in other languages that we can compile to machine code. So when you run "python foo.py", what you're doing is running a C program that reads your Python file and does stuff based on that.
-
The program I linked is the Python interpreter you're probably using, but the abstract set of rules that make up Python are not in any particular way tied to C. You could also use a Java program or a C# program to interpret your Python code. They've even made Python in Python itself, although it uses a more restricted version of Python so it's easier to compile it.
-
Sonar
Write Clean Python Code. Always.. Sonar helps you commit clean code every time. With over 225 unique rules to find Python bugs, code smells & vulnerabilities, Sonar finds the issues while you focus on the work.
-
IronPython
Implementation of Python 3.x for .NET Framework that is built on top of the Dynamic Language Runtime.
The program I linked is the Python interpreter you're probably using, but the abstract set of rules that make up Python are not in any particular way tied to C. You could also use a Java program or a C# program to interpret your Python code. They've even made Python in Python itself, although it uses a more restricted version of Python so it's easier to compile it.
Related posts
- Does Python plan to add JIT or get rid of the GIL?
- IronPython 3.4.0-alpha1 is available
- Will we ever get a new CLR language to replace C# Like Kotlin did for Java?
- What are your thoughts on Codon compiler having a paid licence?
- Backtesting Engines for Testing Intraday Data on Thousands of Symbols Simultaneously