python Python片段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python片段相关的知识,希望对你有一定的参考价值。

'''
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))
'''
Об'єднати список в стрічку
'''

a = ['Python', 'is', 'awesome']
print(' '.join(a))
'''
Pythonic way of
VALUE SNAPPING
'''

a, b = 5, 10
print(a, b)

a, b = b, a
print(a, b)

以上是关于python Python片段的主要内容,如果未能解决你的问题,请参考以下文章

python Python片段

python 有用的Python代码片段

python Python测试片段

python Python片段

python Python - 有用的片段

python 有用的python片段