“ensembles de python” Réponses codées

python set

# A set contains unique elements of which the order is not important
s = set()
s.add(1)
s.add(2)
s.remove(1)
print(s)
# Can also be created from a list (or some other data structures)
num_list = [1,2,3]
set_from_list = set(num_list)
Arno Deceuninck

ensembles de python

# Python also has sets which you can use
# Keep in mind that sets cannot have duplicate of the same value
# This can be useful for removing doubles in a list

mySet = {1, 2, 2, 3, 4, 5, 10, 10, 15}
print(mySet) # {1, 2, 3, 4, 5, 10, 15}

# You can also create a set with 'set([list elements])'

myList = ['apples', 'bananas', 'oranges', 'grapes']
myList.append('apples')
myList.append('oranges')
print(myList) # ['apples', 'bananas', 'oranges', 'grapes', 'apples', 'oranges']

myNewSet = set(myList)
print(myNewSet) # {'apples', 'bananas', 'oranges', 'grapes'}
Ninja Penguin

python set

set_name = {item1, item2, ...}
alimehridev

Quand utiliser des ensembles de python

"""
The Python sets are highly useful to efficiently remove duplicate values from
a collection like a list and to perform common math operations like unions and
intersections.
"""
notPlancha

Réponses similaires à “ensembles de python”

Questions similaires à “ensembles de python”

Plus de réponses similaires à “ensembles de python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code