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

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?

Function Arguments (in Python For Example)

What are [function] arguments? What are they used for? I started learning Python very recently; I&… Read more Function Arguments (in Python For Example)