By “shallow copying” it means the content of the dictionary is not copied by value, but just creating a new reference. >>> a = {1: [1,2,3]} >>> b = a.copy() >>> a, b ({1: [1, 2, 3]}, {1: [1, 2, 3]}) >>>
Chỉnh bàn phím cho đỡ đau cổ tay
Tôi bị đau cổ tay, chắc do dùng bàn phím máy tính nhỏ mà mình phải gõ nhiều. Có loại bàn phím ergonomic phù hợp là Kinesis Freestyle 2, bàn phím được tách thành hai nửa để có thể kéo
Goal mindset vs. Growth mindset
A goal mind-set emphasizes achievement and status, whereas a growth mind-set values development and stretching oneself. A goal mind-set prioritizes hitting a target and asking how long it will it take to get there, whereas growth mind-sets simply ask, “How
python – Difference between __str__ and __repr__? – Stack Overflow
Tóm tắt: cần __repr__ cho mọi class, vì cái default của Python không giúp thể hiện thông tin đầy đủ của đối tượng. Giá trị trả về của __repr__ sẽ hiện ra khi nhập vào tên của object instance, còn
Understanding the underscore( _ ) of Python – Hacker Noon
There are 5 cases for using the underscorein Python. For storing the value of last expression in interpreter. For ignoring the specific values. (so-called “I don’t care”) To give special meanings and functions to name of vartiables or functions. To use