다음 방법은 주어진 목록에 중복이 있는지 확인할 수 있으며, set() 속성을 사용하여 목록에서 제거할 수 있습니다.
x = [1,1,2,2,3,2,3,4,5,6] y = [1,2,3,4,5] len(x)== len(set(x)) # False len(y)== len(set(y)) # True
이 방법은 두 문자열이 철자법인지 확인하는 데 사용할 수 있습니다.
from collections import Counter >>> Counter('abadfsdafsdfjsdaf') Counter({'a': 4, 'd': 4, 'f': 4, 's': 3, 'b': 1, 'j': 1}) def anagram(first, second): return Counter(first) == Counter(second) anagram("abcd3", "3acdb") # True
이 코드 조각은 개체의 메모리 사용량을 확인하는 데 사용할 수 있습니다.
import sys variable = 30 print(sys.getsizeof(variable)) # 28
이 방법은 문자열의 바이트 크기를 출력할 수 있습니다.
print(len(''.encode('utf-8')))# 0 print(len('hellow sdfsdaf'.encode('utf-8'))) # 14
이 코드 조각은 반복 없이 문자열을 여러 번 인쇄할 수 있습니다.
n = 2; s ="Programming"; print(s * n); # ProgrammingProgramming
다음 코드 조각에서는 title()만 사용하여 문자열에 있는 각 단어의 첫 글자를 대문자로 표시합니다.
s = "programming is awesome" print(s.title()) # Programming Is Awesome
이 방법은 목록을 특정 크기의 목록으로 세분화합니다.
>>> list = list(range(12)) >>> size=3 >>> [list[i:i+size] for i in range(0,len(list), size)] [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9, 10, 11]] >>>
다음 코드는 filter()를 사용하여 목록에서 오류 값 (False, None, 0 및 " ")을 제거합니다.
list(filter(bool, [0, 1, False, 2, '', 3, 'a', 's', 34]))
다음 코드를 사용하여 2D 배열 배열을 바꿀 수 있습니다.
array = [['a', 'b'], ['c', 'd'], ['e', 'f']] transposed = zip(*array) print(transposed) # [('a', 'c', 'e'), ('b', 'd', 'f')]
다음 코드는 다양한 연산자에 대해 다중 비교를 수행합니다.
a = 3 print( 2 < a < 8) # True print(1 == a < 2) # False
이 코드 조각은 목록의 각 요소를 쉼표로 구분하면서 문자열 목록을 단일 문자열로 변환합니다.
hobbies = ["basketball", "football", "swimming"] print("My hobbies are: " + ", ".join(hobbies)) # My hobbies are: basketball, football, swimming
이 방법은 문자열의 모음("a", "e", "i", "o", "u") 수를 계산합니다.
import re print(len(re.findall(r'[aeiou]', 'foobar', re.IGNORECASE))) # 3 print(len(re.findall(r'[aeiou]', 'gym', re.IGNORECASE))) # 0
이 메서드는 주어진 문자열의 첫 글자를 소문자 모드로 변환합니다.
'FooBar'[:1].lower() + 'FooBar'[1:] # 'fooBar' 'FooBar'[:1].lower() + 'FooBar'[1:] # 'fooBar'
다음 코드는 재귀적 방법을 사용하여 잠재적으로 깊은 목록을 확장합니다.
def spread(arg): ret = [] for i in arg: if isinstance(i, list): ret.extend(i) else: ret.append(i) return ret def deep_flatten(lst): result = [] result.extend( spread(list(map(lambda x: deep_flatten(x) if type(x) == list else x, lst)))) return result deep_flatten([1, [2], [[3], 4], 5]) # [1,2,3,4,5] print(deep_flatten([1, [2], [[3], 4], 5])) # [1,2,3,4,5]
이 방법은 두 반복 간의 차이를 찾기 위해 첫 번째 반복의 값만 유지합니다.
set([1,2,3])-set([1,2,4]) # [3]
다음 방법은 기존 함수를 사용하여 두 가지 차이점을 찾아 출력합니다. 목록 사이.
def difference_by(a, b, fn): b = set(map(fn, b)) return [item for item in a if fn(item) not in b] from math import floor difference_by([2.1, 1.2], [2.3, 3.4],floor) # [1.2] difference_by([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], lambda v : v['x']) # [ { x: 2 } ]
다음 메서드는 한 줄에 여러 함수를 호출할 수 있습니다
def add(a, b): return a + b def subtract(a, b): return a – b a, b = 4, 5 print((subtract if a > b else add)(a, b)) # 9
Python3.5 및 업그레이드 버전에서는 다음 방법으로도 단계 코드를 실행할 수 있습니다.
def merge_dictionaries(a, b): return {**a, **b} a = { 'x': 1, 'y': 2} b = { 'y': 3, 'z': 4} print(merge_dictionaries(a, b)) # {'y': 3, 'x': 1, 'z': 4}
다음 방법을 사용하면 두 개의 목록을 글꼴로 변환할 수 있습니다.
keys = ["a", "b", "c"] values = [2, 3, 4] print(dict(zip(keys, values))) # {'a': 2, 'c': 4, 'b': 3}
이 방법은 목록에서 발생 빈도가 가장 높은 요소를 출력합니다.
def most_frequent(list): return max(set(list), key = list.count) list = [1,2,1,2,3,2,1,4,2] most_frequent(list)
다음 코드는 주어진 문자열이 회문인지 확인합니다. 먼저 문자열을 소문자로 변환한 다음 알파벳이 아닌 문자를 제거하고 마지막으로 새 문자열 버전을 원래 버전과 비교합니다.
def palindrome(string): from re import sub s = sub('[\W_]', '', string.lower()) return s == s[::-1] palindrome('taco cat') # True
다음 코드 조각은 if-else 조건문 없이 간단한 계산기를 작성하는 방법을 보여줍니다.
import operator action = { "+": operator.add, "-": operator.sub, "/": operator.truediv, "*": operator.mul, "**": pow } print(action['-'](50, 25)) # 25
이 알고리즘은 Fisher-Yates 알고리즘을 사용하여 새 목록의 요소를 무작위로 정렬합니다.
from copy import deepcopy from random import randint def shuffle(lst): temp_lst = deepcopy(lst) m = len(temp_lst) while (m): m -= 1 i = randint(0, m) temp_lst[m], temp_lst[i] = temp_lst[i], temp_lst[m] return temp_lst foo = [1, 2, 3] shuffle(foo) # [2,3,1] , foo = [1,2,3]
이 방법은 중첩 목록을 2개 수준까지만 확장할 수 있으며 최대 2개 수준까지 확장할 수 있습니다.
def spread(arg): ret = [] for i in arg: if isinstance(i, list): ret.extend(i) else: ret.append(i) return ret spread([1, 2, 3, [4, 5, 6], [7], 8, 9]) # [1,2,3,4,5,6,7,8,9] print(spread([1, 2, 3, [4, 5,[10,11,12,132,4,[1,2,3,4,5,6]], 6], [7], 8, 9])) #[1, 2, 3, 4, 5, [10, 11, 12, 132, 4, [1, 2, 3, 4, 5, 6]], 6, 7, 8, 9]
위 내용은 매우 실용적인 Python 기술에는 어떤 것이 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!