Comprehensions in Python: List, Dictionary, Set

List Comprehensions

  • List comprehensions sono un modo conciso ed efficiente per creare list s in Python.
  • Consentono di generare un nuovo list applicando un'espressione a ciascun elemento in un iterabile esistente(ad esempio, list tupla, stringa) e filtrando gli elementi in base a una condizione.
  • La sintassi di una list comprensione è: [expression for item in iterable if condition]

Esempio:

# 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 consentono di creare dizionari in modo conciso.
  • Analogamente a list comprehensions, generano un new dictionary applicando un'espressione a ciascun elemento in un iterabile e filtrando gli elementi in base a una condizione.
  • La sintassi di una dictionary comprensione è: {key_expression: value_expression for item in iterable if condition}

Esempio:

# 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 ti permettono di creare set s in modo simile a list comprehensions e dictionary comprehensions.
  • Generano un nuovo set applicando un'espressione a ciascun elemento in un elemento iterabile e filtrando in base a una condizione.
  • La sintassi di una set comprensione è: {expression for item in iterable if condition}

Esempio:

# 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 in Python fornisce un modo conciso e leggibile per creare list messaggi di posta elettronica, dizionari e set messaggi basati su iterabili esistenti, rendendo il codice più elegante ed efficiente.