Curso de Programación en Python/Set-5
Ir a la navegación
Ir a la búsqueda
Set-5.py
1 #!/usr/bin/python3
2 #-*-coding: utf-8 -*-
3
4
5 Set1 = { 1, "Gato", 3 }
6 Set2 = { 6, "Perro", "Gato", 4, 3 }
7
8 print( "Set1:", Set1 )
9 print( "Set2:", Set2 )
10
11 # Union the sets.
12 Set3 = Set1.union( Set2 )
13 print( "Set3:", Set3 )
Resultado
[rrc@Llawyr PythonClase]$ ./Set-5.py Set1: {1, 3, 'Gato'} Set2: {'Perro', 3, 4, 'Gato', 6} Set3: {1, 3, 4, 6, 'Gato', 'Perro'}