Skip to content Skip to sidebar Skip to footer
Showing posts with the label Language Design

How Is The Python Grammar Used Internally?

I'm trying to get a deeper understanding of how Python works, and I've been looking at the … Read more How Is The Python Grammar Used Internally?

Why Can't I Add A Tuple To A List With The '+' Operator In Python?

Python not support adding a tuple to a list: >>> [1,2,3] + (4,5,6) Traceback (most recent … Read more Why Can't I Add A Tuple To A List With The '+' Operator In Python?