Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 183 Bytes

File metadata and controls

10 lines (9 loc) · 183 Bytes

Python Cheat Sheet

Commonly used python patterns

Short Code For Loop Pattern

>>> a = [-5,-4,-3,-2,-1,0,1,2,3,4,5]
>>> b = [x for x in a if x < 0]
>>> b
[-5,-4,-3,-2,-1]