<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>http://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Curso_de_Programaci%C3%B3n_en_Python%2FList-3</id>
	<title>Curso de Programación en Python/List-3 - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Curso_de_Programaci%C3%B3n_en_Python%2FList-3"/>
	<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Curso_de_Programaci%C3%B3n_en_Python/List-3&amp;action=history"/>
	<updated>2026-05-18T14:02:19Z</updated>
	<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>http://wiki.cabal.mx/index.php?title=Curso_de_Programaci%C3%B3n_en_Python/List-3&amp;diff=119442&amp;oldid=prev</id>
		<title>Rrc: /* Resultado */</title>
		<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Curso_de_Programaci%C3%B3n_en_Python/List-3&amp;diff=119442&amp;oldid=prev"/>
		<updated>2015-12-17T19:29:24Z</updated>

		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Resultado&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== List-3.py ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#!/usr/bin/python3&lt;br /&gt;
#-*-coding: utf-8 -*-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Impares = [1, 3, 5]&lt;br /&gt;
Pares = [2, 4, 6]&lt;br /&gt;
&lt;br /&gt;
print( &amp;quot;La list Impares es: {0} y la list Pares es {1}\n&amp;quot;&lt;br /&gt;
          .format( Impares, Pares ) )&lt;br /&gt;
&lt;br /&gt;
Impares.extend( Pares )&lt;br /&gt;
print( &amp;quot;La list Impares después unir Pares al fin con Impares.extend( Pares ) es:\n{}&amp;quot; .format( Impares ) )&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Resultado ===&lt;br /&gt;
&lt;br /&gt;
[rrc@Llawyr PythonClase]$ ./List-3.py&lt;br /&gt;
 La list Impares es: [1, 3, 5] y la list Pares es [2, 4, 6]&lt;br /&gt;
 &lt;br /&gt;
 La list Impares después de unir Pares al fin con Impares.extend( Pares ) es:&lt;br /&gt;
 [1, 3, 5, 2, 4, 6]&lt;br /&gt;
&lt;br /&gt;
=== Explicación ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Programación en Python]]&lt;br /&gt;
[[Category:PythonCabal]]&lt;br /&gt;
[[Category:CursoPython]]&lt;/div&gt;</summary>
		<author><name>Rrc</name></author>
		
	</entry>
</feed>