PABLO ENFEDAQUE VIDAL || @pablitoev56 || Typical errors when dealing with mutable objects and not having a full understanding of how certain Python internals work Alternative talk title
PABLO ENFEDAQUE VIDAL || @pablitoev56 || Python code is interpreted at import time Interpreted means executed This includes objects creation 4th and 5th key concepts
PABLO ENFEDAQUE VIDAL || @pablitoev56 || > Shallow copy uses the reference to the object > Assignment, constructor by copy, arguments in function calls > Be aware of it! > Class attributes remain in the class > Create instance mutable attributes in __init__ > Functions default values remain in the function > Create mutable default values inside the function to sum up