Z.ZHANG 5 月 22, 2021 2 min read Python Shallow and Deep Copy 一言以蔽之,Shallow Copy 不会递归地拷贝复合数据类型中的嵌套元素(如列表中的列表),因为其使用的是… Read more...
Z.ZHANG 8 月 28, 2020 3 min read Move Your Cursor Faster in Terminal It could be quite annoying to change argument values wh… Read more...
Z.ZHANG 6 月 12, 2019 1 min read Conda Cheatsheet https://uoa-eresearch.github.io/eresearch-cookbook/reci… Read more...
Z.ZHANG 4 月 10, 2019 1 min read Python Immutables a = [[]]*6 a [[], [], [], [], [], []] a[1].append(̶… Read more...
Z.ZHANG 12 月 6, 2018 1 min read *args and **kwargs in Python Link: https://www.saltycrane.com/blog/2008/01/how-to-us… Read more...
Z.ZHANG 12 月 6, 2018 1 min read Python Inheritance http://python-history.blogspot.com/2010/06/method-resol… Read more...
Z.ZHANG 11 月 29, 2018 2 min read Python Disambiguation List Comprehension Looking at the below code, write dow… Read more...
Z.ZHANG 10 月 29, 2018 6 min read Python Generators Generator functions allow you to declare a function tha… Read more...