I used Python to Create My Own Programming Language

How to Create a Language Interpreter with Python

Umangshrestha
Python in Plain English
4 min readJul 25, 2021

--

How to create a programming language with Python

Computers only understand machine code. At the end of the day programming languages are just words that make it easier for humans to write what they want computers to do. The real magic is done by compilers and interpreters to bridge the gap. The interpreter reads the code line by line and converts it to machine code. In this article, we will design an…

--

--

I like computer and programming. I am currently trying to learn how to write articles for sharing what I know.