“Питоны устанавливаются” Ответ

набор Python

# 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

Питоны устанавливаются

# 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_name = {item1, item2, ...}
alimehridev

Когда использовать наборы 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

Ответы похожие на “Питоны устанавливаются”

Вопросы похожие на “Питоны устанавливаются”

Больше похожих ответов на “Питоны устанавливаются” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования