Skip to content

Instantly share code, notes, and snippets.

View denglj's full-sized avatar
🎯
Focusing

LJ denglj

🎯
Focusing
  • beijing
View GitHub Profile
@sloria
sloria / bobp-python.md
Last active July 7, 2024 18:13
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
@wangyiyang
wangyiyang / Python面试.md
Last active June 14, 2018 01:45
Python 面试题

#Python 面试题

Python 装饰器

def log(func):
	def wrapper(*args, **kw):
    	print('call %s():' % func.__name__)
    	return func(*args, **kw)

return wrapper