We're sorry but this page doesn't work properly without JavaScript enabled. Please enable it to continue.
Feedback

Writing a Python interpreter from scratch, in half an hour

Formal Metadata

Title
Writing a Python interpreter from scratch, in half an hour
Title of Series
Number of Parts
141
Author
Contributors
License
CC Attribution - NonCommercial - ShareAlike 4.0 International:
You are free to use, adapt and copy, distribute and transmit the work or content in adapted or unchanged form for any legal and non-commercial purpose as long as the work is attributed to the author in the manner specified by the author or licensor and the work or content is shared also in adapted form only under the conditions of this
Identifiers
Publisher
Release Date
Language

Content Metadata

Subject Area
Genre
Abstract
You use the Python interpreter every single day. It does a lot of things for you: checks that your code has valid syntax and is properly indented, imports modules from various locations, and runs your code instruction-by-instruction. But if you've ever wondered how exactly it happens, this talk will teach you the entire process, by building a working python interpreter from scratch.