Comprehensions 에서 Python: List, Dictionary, Set

List Comprehensions

  • List comprehensions list 에서 를 만드는 간결하고 효율적인 방법입니다 Python.
  • list 기존 iterable(예: 튜플, 문자열)의 각 항목에 표현식을 적용 list 하고 조건에 따라 항목을 필터링하여 새 항목을 생성할 수 있습니다 .
  • 이해 의 구문은 list 다음과 같습니다. [expression for item in iterable if condition]

예:

# List comprehension to generate a list of squares of numbers from 0 to 9  
squares = [x**2 for x in range(10)]  
print(squares)   # Output: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]  
  
# List comprehension to filter even numbers from a list  
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]  
even_numbers = [x for x in numbers if x % 2 == 0]  
print(even_numbers)   # Output: [2, 4, 6, 8, 10]  

 

Dictionary Comprehensions

  • Dictionary comprehensions 간결한 방식으로 사전을 만들 수 있습니다.
  • 와 유사하게, iterable의 각 항목에 표현식을 적용하고 조건에 따라 항목을 필터링하여 list comprehensions 새 항목을 생성합니다. dictionary
  • 이해 의 구문은 dictionary 다음과 같습니다. {key_expression: value_expression for item in iterable if condition}

예:

# Dictionary comprehension to create a dictionary of squares of numbers from 0 to 9  
squares_dict = {x: x**2 for x in range(10)}  
print(squares_dict)   # Output: {0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6: 36, 7: 49, 8: 64, 9: 81}  
  
# Dictionary comprehension to filter even numbers from a dictionary  
numbers_dict = {1: 'one', 2: 'two', 3: 'three', 4: 'four', 5: 'five'}  
even_numbers_dict = {key: value for key, value in numbers_dict.items() if key % 2 == 0}  
print(even_numbers_dict)   # Output: {2: 'two', 4: 'four'}  

 

Set Comprehensions

  • Set comprehensions 및 와 set 유사한 방식으로 을 만들 수 있습니다. list comprehensions dictionary comprehensions
  • set iterable의 각 항목에 표현식을 적용하고 조건에 따라 항목을 필터링하여 새 항목을 생성합니다 .
  • 이해 의 구문은 set 다음과 같습니다. {expression for item in iterable if condition}

예:

# Set comprehension to create a set of squares of numbers from 0 to 9  
squares_set = {x**2 for x in range(10)}  
print(squares_set)   # Output: {0, 1, 4, 9, 16, 25, 36, 49, 64, 81}  
  
# Set comprehension to filter even numbers from a set
numbers_set = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}  
even_numbers_set = {x for x in numbers_set if x % 2 == 0}  
print(even_numbers_set)   # Output: {2, 4, 6, 8, 10}

 

Comprehensions 기존 iterables를 기반으로 s, 사전 및 s를 Python 생성하는 간결하고 읽기 쉬운 방법을 제공하여 코드 를 보다 우아하고 효율적으로 만듭니다. list set