Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 463 Bytes

pitfalls.md

File metadata and controls

13 lines (12 loc) · 463 Bytes

Pitfalls in Python and its libraries

Python

  • Python passes by object. This is quite different from pass by reference and pass by value, as explained in the blog here and here.
  • pay attention to the trailing ,.
>>> a = 1
>>> a
1
>>> a = 1,
>>> a
(1,)