<?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%2FCrearFunci%C3%B3n-2</id>
	<title>Curso de Programación en Python/CrearFunción-2 - 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%2FCrearFunci%C3%B3n-2"/>
	<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Curso_de_Programaci%C3%B3n_en_Python/CrearFunci%C3%B3n-2&amp;action=history"/>
	<updated>2026-05-05T01:23:56Z</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/CrearFunci%C3%B3n-2&amp;diff=6263&amp;oldid=prev</id>
		<title>Rrc en 03:28 2 oct 2014</title>
		<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Curso_de_Programaci%C3%B3n_en_Python/CrearFunci%C3%B3n-2&amp;diff=6263&amp;oldid=prev"/>
		<updated>2014-10-02T03:28:05Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
* [[:#CrearFunción-2.py | CrearFunción-2.py]]&lt;br /&gt;
** [[:#Resultado | Resultado]]&lt;br /&gt;
** [[:#Explicación | Explicación]]&lt;br /&gt;
&lt;br /&gt;
== CrearFunción-2.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;
def hola( ):&lt;br /&gt;
  print(  &amp;quot;Hola&amp;quot; )&lt;br /&gt;
&lt;br /&gt;
def area( ancho, altura ):&lt;br /&gt;
  return ancho * altura&lt;br /&gt;
&lt;br /&gt;
def print_bienvenido( nombre):&lt;br /&gt;
  print( &amp;quot;Bienvenido&amp;quot;, nombre )&lt;br /&gt;
&lt;br /&gt;
hola( )&lt;br /&gt;
hola( )&lt;br /&gt;
&lt;br /&gt;
print_bienvenido( &amp;quot;Miguel&amp;quot;)&lt;br /&gt;
w = 4&lt;br /&gt;
h = 5&lt;br /&gt;
print( &amp;quot;ancho =&amp;quot;, w, &amp;quot; height =&amp;quot;, h, &amp;quot; area =&amp;quot;, area( w, h ) )&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Resultado ===&lt;br /&gt;
&lt;br /&gt;
Hola&lt;br /&gt;
Hola&lt;br /&gt;
Bienveenido Miguel&amp;lt;br /&amp;gt;&lt;br /&gt;
ancho = 4  altura = 5  areá = 20&lt;br /&gt;
&lt;br /&gt;
=== Explicación ===&lt;br /&gt;
&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>