-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartial_function.py
46 lines (35 loc) · 1.18 KB
/
partial_function.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File: partial_function.py
# Description: Examples on how to use partial function in Python
# Environment: PyCharm and Anaconda environment
#
# MIT License
# Copyright (c) 2018 Valentyn N Sichkar
# github.com/sichkar-valentyn
#
# Reference to:
# [1] Valentyn N Sichkar. Examples on how to use partial function in Python // GitHub platform [Electronic resource]. URL: https://github.com/sichkar-valentyn/Partial_Function_in_Python (date of access: XX.XX.XXXX)
# Explaining partial function and how to use it
# Importing partial from functools
from functools import partial
# Assigning to x integer number in binary notation
x = int('1101', base=2)
print(x) # Showing result in decimal notation
# Creating function int_2 with partial
int_2 = partial(int, base=2)
x = int_2('1101')
print(x)
# Another examples how to sort lists easier with partial
x = [
('Guido', 'van', 'Rossum'),
('Haskell', 'Curry'),
('John', 'Backus')
]
y = ['abc', 'cba', 'abb']
import operator as op
# Creating function to sort lists by last element
sort_by_last = partial(list.sort, key=op.itemgetter(-1))
print(x) # Showing current list
sort_by_last(x)
print(x) # Showing sorted list
sort_by_last(y)
print(y)