‎Check network for missing images.

A collection of thoughts, study notes, and some fragments of life, presented in the form of a personal website.

科技 生活 世界 随手记两笔
Categories: 11
Posts: 169

Los Angeles

Jan 12, 2017

Los Angeles, UCLA and Staples Center of the Lakers.

Python 101 · Modules and Runtime

Mar 5, 2016

Import Methods: Ways to import modules. Method Characteristics Usage Absolute Standard approach; searches from sys.path roots. Preferred for clarity and PEP 8 compliance. import osos.path.join('a', 'b') From Style Injects specific attributes directly...

Python 101 · Exceptions, Logging, Unittest

Feb 27, 2016

Concepts EAFP - Easier to Ask for Forgiveness than Permission: A coding style that assumes valid inputs and successful operations, handling potential errors through try...except blocks only after they occur. LBYL -...

Python 101 · Object Oriented Programming

Feb 20, 2016

Basics Class: A blueprint or template that defines the structure of properties (data) and methods (behaviors) that all objects of its type will possess. Object: A specific instance created from a class,...

Python 101 · Functions

Feb 13, 2016

Definitions Basics: the def keyword, docstring, arguments, and return. Typed Hints: defined with type hints (soft suggestions) for arguments and return, enhancing readability and allowing static analysis. Typed Checks: defined with type...