DEV Community

Discussion on: What is the most confusing thing to you in Python?

Collapse
 
tmr232 profile image
Tamir Bahar

Basically, all types in Python are passed-by-reference. The distinction is between mutable and immutable types. I recommend reading Python's Data Mode. The first couple of paragraphs are really helpful.