X Tutup
# Python Cheat Sheet Basic cheatsheet for Python mostly based on the book written by Al Sweigart, [Automate the Boring Stuff with Python](https://automatetheboringstuff.com/) under the [Creative Commons license](https://creativecommons.org/licenses/by-nc-sa/3.0/) and many other sources. ## Read It - [Website](https://www.pythoncheatsheet.org) - [Github](https://github.com/wilfredinni/python-cheatsheet) - [PDF](https://github.com/wilfredinni/Python-cheatsheet/raw/master/python_cheat_sheet.pdf) - [Jupyter Notebook](https://mybinder.org/v2/gh/wilfredinni/python-cheatsheet/master?filepath=jupyter_notebooks) ## itertools Module The _itertools_ module is a collection of tools intented to be fast and use memory efficiently when handling iterators (like [lists](#lists) or [dictionaries](#dictionaries-and-structuring-data)). From the official [Python 3.x documentation](https://docs.python.org/3/library/itertools.html): > The module standardizes a core set of fast, memory efficient tools that are useful by themselves or in combination. Together, they form an “iterator algebra” making it possible to construct specialized tools succinctly and efficiently in pure Python. The _itertools_ module comes in the standard library and must be imported. The [operator](https://docs.python.org/3/library/operator.html) module will also be used. This module is not necessary when using itertools, but needed for some of the examples below. ```python import itertools import operator ``` ### accumulate Makes an iterator that returns the results of a function. ```python itertools.accumulate(iterable[, func]) ``` Example: ```python data = [1, 2, 3, 4, 5] result = itertools.accumulate(data, operator.mul) for each in result: print(each) ``` The operator.mul takes two numbers and multiplies them: ```python operator.mul(1, 2) ``` ```python operator.mul(2, 3) ``` ```python operator.mul(6, 4) ``` ```python operator.mul(24, 5) ``` Passing a function is optional: ```python data = [5, 2, 6, 4, 5, 9, 1] result = itertools.accumulate(data) for each in result: print(each) ``` If no function is designated the items will be summed: ```python 5 5 + 2 = 7 7 + 6 = 13 13 + 4 = 17 17 + 5 = 22 22 + 9 = 31 31 + 1 = 32 ``` ### combinations Takes an iterable and a integer. This will create all the unique combination that have r members. ```python itertools.combinations(iterable, r) ``` Example: ```python shapes = ['circle', 'triangle', 'square',] result = itertools.combinations(shapes, 2) for each in result: print(each) ``` ### combinations_with_replacement Just like combinations(), but allows individual elements to be repeated more than once. ```python itertools.combinations_with_replacement(iterable, r) ``` Example: ```python shapes = ['circle', 'triangle', 'square'] result = itertools.combinations_with_replacement(shapes, 2) for each in result: print(each) ``` ### count Makes an iterator that returns evenly spaced values starting with number start. ```python itertools.count(start=0, step=1) ``` Example: ```python for i in itertools.count(10,3): print(i) if i > 20: break ``` ### cycle This function cycles through an iterator endlessly. ```python itertools.cycle(iterable) ``` Example: ```python colors = ['red', 'orange', 'yellow', 'green', 'blue', 'violet'] for color in itertools.cycle(colors): print(color) ``` When reached the end of the iterable it start over again from the beginning. ### chain Take a series of iterables and return them as one long iterable. ```python itertools.chain(*iterables) ``` Example: ```python colors = ['red', 'orange', 'yellow', 'green', 'blue'] shapes = ['circle', 'triangle', 'square', 'pentagon'] result = itertools.chain(colors, shapes) for each in result: print(each) ``` ### compress Filters one iterable with another. ```python itertools.compress(data, selectors) ``` Example: ```python shapes = ['circle', 'triangle', 'square', 'pentagon'] selections = [True, False, True, False] result = itertools.compress(shapes, selections) for each in result: print(each) ``` ### dropwhile Make an iterator that drops elements from the iterable as long as the predicate is true; afterwards, returns every element. ```python itertools.dropwhile(predicate, iterable) ``` Example: ```python data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1] result = itertools.dropwhile(lambda x: x<5, data) for each in result: print(each) ``` ### filterfalse Makes an iterator that filters elements from iterable returning only those for which the predicate is False. ```python itertools.filterfalse(predicate, iterable) ``` Example: ```python data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] result = itertools.filterfalse(lambda x: x<5, data) for each in result: print(each) ``` ### groupby Simply put, this function groups things together. ```python itertools.groupby(iterable, key=None) ``` Example: ```python robots = [{ 'name': 'blaster', 'faction': 'autobot' }, { 'name': 'galvatron', 'faction': 'decepticon' }, { 'name': 'jazz', 'faction': 'autobot' }, { 'name': 'metroplex', 'faction': 'autobot' }, { 'name': 'megatron', 'faction': 'decepticon' }, { 'name': 'starcream', 'faction': 'decepticon' }] for key, group in itertools.groupby(robots, key=lambda x: x['faction']): print(key) print(list(group)) ``` ### islice This function is very much like slices. This allows you to cut out a piece of an iterable. ```python itertools.islice(iterable, start, stop[, step]) ``` Example: ```python colors = ['red', 'orange', 'yellow', 'green', 'blue',] few_colors = itertools.islice(colors, 2) for each in few_colors: print(each) ``` ### permutations ```python itertools.permutations(iterable, r=None) ``` Example: ```python alpha_data = ['a', 'b', 'c'] result = itertools.permutations(alpha_data) for each in result: print(each) ``` ### product Creates the cartesian products from a series of iterables. ```python num_data = [1, 2, 3] alpha_data = ['a', 'b', 'c'] result = itertools.product(num_data, alpha_data) for each in result: print(each) ``` ### repeat This function will repeat an object over and over again. Unless, there is a times argument. ```python itertools.repeat(object[, times]) ``` Example: ```python for i in itertools.repeat("spam", 3): print(i) ``` ### starmap Makes an iterator that computes the function using arguments obtained from the iterable. ```python itertools.starmap(function, iterable) ``` Example: ```python data = [(2, 6), (8, 4), (7, 3)] result = itertools.starmap(operator.mul, data) for each in result: print(each) ``` ### takewhile The opposite of dropwhile(). Makes an iterator and returns elements from the iterable as long as the predicate is true. ```python itertools.takewhile(predicate, iterable) ``` Example: ```python data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1] result = itertools.takewhile(lambda x: x<5, data) for each in result: print(each) ``` ### tee Return n independent iterators from a single iterable. ```python itertools.tee(iterable, n=2) ``` Example: ```python colors = ['red', 'orange', 'yellow', 'green', 'blue'] alpha_colors, beta_colors = itertools.tee(colors) for each in alpha_colors: print(each) ``` ```python colors = ['red', 'orange', 'yellow', 'green', 'blue'] alpha_colors, beta_colors = itertools.tee(colors) for each in beta_colors: print(each) ``` ### zip_longest Makes an iterator that aggregates elements from each of the iterables. If the iterables are of uneven length, missing values are filled-in with fillvalue. Iteration continues until the longest iterable is exhausted. ```python itertools.zip_longest(*iterables, fillvalue=None) ``` Example: ```python colors = ['red', 'orange', 'yellow', 'green', 'blue',] data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10,] for each in itertools.zip_longest(colors, data, fillvalue=None): print(each) ```
X Tutup