“def Union (11 12) в Python” Ответ

Союз двух сетов синтаксиса Python

s1 = {'Python', 'Java'}
s2 = {'C#', 'Java'}

s = s1.union(s2)

print(s)
Talented Toucan

def Union (11 12) в Python

# Python program to illustrate union
# Without repetition 
def Union(11, 12):
    final_list = list(set(lst1) | set(lst2))
    return final_list
  
# Driver Code
lst1 = [23, 15, 2, 14, 14, 16, 20 ,52]
lst2 = [2, 48, 15, 12, 26, 32, 47, 54]
print(Union(lst1, lst2))
Powerful Polecat

Ответы похожие на “def Union (11 12) в Python”

Вопросы похожие на “def Union (11 12) в Python”

Больше похожих ответов на “def Union (11 12) в Python” по Python

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

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