Curso de Programación en Python/Set-5
< Curso de Programación en Python
Ir a la navegación
Ir a la búsqueda
Revisión del 19:21 25 nov 2014 de Rrc (discusión | contribuciones) (Página creada con '__NOTOC__ * Set-5.py ** Resultado == Set-5.py == <syntaxhighlight lang="python" line="GESHI_FANCY_LINE_NUMBERS"> #!/usr/bin/python3 #-*-coding...')
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'}