Last active
October 9, 2018 15:44
-
-
Save Searge/11f85a0452ad650376e00760c245d0d5 to your computer and use it in GitHub Desktop.
Python Snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Pythonic way of | |
VALUE SNAPPING | |
''' | |
a, b = 5, 10 | |
print(a, b) | |
a, b = b, a | |
print(a, b) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
MOST FREQUENT | |
element in a list | |
''' | |
a = [1 2, 3, 1, 2, 3, 2, 2, 4, 5, 1] | |
print(max(set(a), key = a.count)) | |
''' | |
using Counter | |
from collections | |
''' | |
from collections import Counter | |
cnt = Counter(a) | |
print(cnt.most_common(3)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Об'єднати список в стрічку | |
''' | |
a = ['Python', 'is', 'awesome'] | |
print(' '.join(a)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment