Z.ZHANG 10 月 29, 2018 1 min read Python Meta-programming In a nutshell: code that manipulates code. Common examp… Read more...
Z.ZHANG 10 月 29, 2018 4 min read Python Descriptors Python descriptors are a way to create managed attribut… Read more...
Z.ZHANG 10 月 29, 2018 6 min read Python Metaclasses The word “meta” means self-referential. A m… Read more...
Z.ZHANG 10 月 28, 2018 5 min read Python Decorators Definition: a decorator is a function that takes anothe… Read more...
Z.ZHANG 10 月 28, 2018 2 min read Python Interpreter Internals Internals of Python Interpreter (VM): Python source cod… Read more...
Z.ZHANG 10 月 25, 2018 4 min read Python Tricks 1. Access the last element in a non-empty array: a = [1… Read more...
Z.ZHANG 10 月 25, 2018 8 min read Python Advanced Topics A list of Python Advanced Topics: Python Generators and… Read more...
Z.ZHANG 10 月 24, 2018 1 min read Python Unit Test import unittest class TestStringMethods(unittest.TestCa… Read more...