Me olvidaba de anotar que les expliqué lo del motor de voz, pero nunca les hablé de pygame así que lo encontraron ellos solos.<br><br><br><br><div class="gmail_quote">El 21 de septiembre de 2010 21:22, Flavio Danesse <span dir="ltr">&lt;<a href="mailto:fdanesse@gmail.com">fdanesse@gmail.com</a>&gt;</span> escribió:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Bueno, luego de dos talleres y a 3 semanas desde el 1º y todavía no les he explicado funciones.<div class="im">
<br><br><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">#!usr/bin/python</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"># -*- coding: UTF-8 -*-</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"></div><span style="color: rgb(153, 0, 0);">import pygame, sys, os, time</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">from pygame.locals import*</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">os.system(&quot;reset&quot;)</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">pygame.mixer.init()</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">e = 1</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">i = 1</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">a = 1</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print &quot;&lt;&lt;&lt;&lt;&lt;&lt;&lt; AguPlayer &gt;&gt;&gt;&gt;&gt;&gt;&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">print &quot;&lt;&lt;&lt;&lt; Agustin Zubiaga &gt;&gt;&gt;&gt;&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">while e:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    cancion = raw_input(&quot;Escribe la direccion de la cancion (s para salir): &quot;)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    z = 1</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if cancion == &quot;s&quot;:        </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = 0</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        e = 0</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif cancion == &quot;h&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = 0</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print </span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    try:</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">        pygame.mixer.music.load(cancion)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        pygame.mixer.music.play()</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        print &quot;===== Reproduciendo =====&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        while z:        </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            ps = raw_input(&quot;(r) reproducir, (s) stop, (e) elegir otra cancion, (S) Salir: &quot;)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            if ps == &quot;S&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">                z = 0</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">                e = 0</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            elif ps == &quot;s&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">                pygame.mixer.music.stop()</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">                print &quot;===== Parado =====&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            elif ps == &quot;e&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">                z = 0</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            elif ps == &quot;r&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">                print &quot;===== Reproduciendo =====&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">                pygame.mixer.music.play()</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">                print &quot;No se reconoce la acción&quot;                         </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    except:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if i == 1:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            print &quot;AguPlayer no puede leer&quot;, cancion</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            time.sleep(3)</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    os.system(&quot;reset&quot;)</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print &quot;Espero que te halla gustado&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">time.sleep(2)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">os.system(&quot;reset&quot;)</span><div class="im"><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">
<br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">#!usr/bin/python</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"># -*- coding: UTF-8 -*-</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">import os</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">import sys</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"></div><span style="color: rgb(153, 0, 0);">pregunta = &quot;¿Deseas Continuar haciendo operaciones? (si/no) &quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">descripcion_de_operacion = &quot;&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">accion_desconocida = &quot;No se reconoce la operación que deseas realizar&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">estado = True</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">while estado: # mientras estado no esté vacío (es decir mientras sea True porque es un bool)</span><div class="im">
<br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    a = raw_input(&quot;Escribe el operando: &quot;)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    o = raw_input(&quot;¿Qué operación deseas hacer? (* , + , - , / , %): &quot;)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    b = raw_input(&quot;Escribe el operador: &quot;)</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"></div><span style="color: rgb(153, 0, 0);">    descripcion_de_operacion = a + o + b + &quot; = &quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if o == &quot;+&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            print descripcion_de_operacion, float(a) + float(b)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            salir_o_quedarse = raw_input(pregunta)</span><div class="im"><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            if salir_o_quedarse == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

</div><span style="color: rgb(153, 0, 0);">                pass</span><div class="im"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            elif salir_o_quedarse == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);">

</div><span style="color: rgb(153, 0, 0);">                estado = False # estado vacío, saldrá del while</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            else:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">                print accion_desconocida</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif o == &quot;-&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            print descripcion_de_operacion, float(a) - float(b)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            salir_o_quedarse = raw_input(pregunta)</span><div class="im">
<br style="color: rgb(153, 0, 0);">
<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            if salir_o_quedarse == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);"></div><span style="color: rgb(153, 0, 0);">                pass</span><div class="im">
<br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">            elif salir_o_quedarse == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"></div><span style="color: rgb(153, 0, 0);">                estado = False # estado vacío, saldrá del while</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">                print accion_desconocida</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif o == &quot;*&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            print descripcion_de_operacion, float(a) * float(b)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            salir_o_quedarse = raw_input(pregunta)</span><div class="im"><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            if salir_o_quedarse == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

</div><span style="color: rgb(153, 0, 0);">                pass</span><div class="im"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            elif salir_o_quedarse == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);">

</div><span style="color: rgb(153, 0, 0);">                estado = False # estado vacío, saldrá del while</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            else:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">                print accion_desconocida</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif o == &quot;/&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            print descripcion_de_operacion, float(a) / float(b)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            salir_o_quedarse = raw_input(pregunta)</span><div class="im">
<br style="color: rgb(153, 0, 0);">
<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            if salir_o_quedarse == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);"></div><span style="color: rgb(153, 0, 0);">                pass</span><div class="im">
<br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">            elif salir_o_quedarse == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"></div><span style="color: rgb(153, 0, 0);">                estado = False # estado vacío, saldrá del while</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">                print accion_desconocida</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif o == &quot;%&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            print descripcion_de_operacion, float(a) * float(b) / 100</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">            salir_o_quedarse = raw_input(pregunta)</span><div class="im"><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            if salir_o_quedarse == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

</div><span style="color: rgb(153, 0, 0);">               pass</span><div class="im"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            elif salir_o_quedarse == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);">

</div><span style="color: rgb(153, 0, 0);">                estado = False # estado vacío, saldrá del while</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            else:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">                print accion_desconocida</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            print accion_desconocida</span><div class="im">
<br style="color: rgb(153, 0, 0);">
<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    os.system(&quot;clear&quot;)</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">sys.exit()</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"></div><div class="im"><span style="color: rgb(153, 0, 0);">#!usr/bin/python</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"># -*- coding: UTF-8 -*-</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">import os</span><br style="color: rgb(153, 0, 0);"></div><span style="color: rgb(153, 0, 0);">import time</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">os.system(&quot;reset&quot;)</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">i = 1</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">no_existe = &quot;No existe la conversion que deseas hacer&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">salir_o_quedarse = &quot;¿Deseas seguir haciendo conversiones?: &quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">F = False</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">con = &quot;Escribe el numero correspondiente a la medida que deseas convertir: &quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">scon = &quot;se puede convertir a: &quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print &quot;              &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Conversor &lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">os.system(&#39;espeak -ves &quot;.  Bienvenido al Conversor de Cristofer Travieso. Nueva versión con aportes de Agustin Zubiaga. Espero sea de Utilidad  .&quot;&#39;)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">print</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">while i:</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - kg&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;2 - libra&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;3 - onza&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;4 - km&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;5 - milla&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;6 - metro&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;7 - yarda&quot;</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    print &quot;8 - pie &quot;</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    print &quot;9 - cm&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;10 - pulgada&quot;</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    print &quot;11 - mm&quot;</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    print &quot;12 - brazas&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;13 - litros&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;14 - pulgadas cubicas&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;15 - pies cubicos&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;16 - pintas Liquidas&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;17 - quarter liquidas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;18 - gramos&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;19 - stones&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;20 - quarter&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;21 - quintales metricos&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;22 - hundredweights&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;23 - toneladas metricas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;24 - Km/h&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;25 - millas/h&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;26 - nudos&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;27 - horsepower&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;28 - caballos vapor&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    os.system(&#39;espeak -ves &quot;Escribe la medida que deseas convertir.&quot;&#39;) </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    c = raw_input(&quot;Escribe la medida que deseas convertir: &quot;)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);"> </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if c == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print    </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Kg&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Libra&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;2 - Onza&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;3 - Stones&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;4 - Quarter&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;1&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif ca == &quot;2&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;3&quot;    </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif ca == &quot;3&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;27&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif ca == &quot;4&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;29&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;2&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Libra&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - kg&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;2 - toneladas metricas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;2&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif ca == &quot;2&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;34&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif c == &quot;3&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;Onza&quot;,scon</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;1 - kg&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;2 - gramos&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;4&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif ca == &quot;2&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;26&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">       else:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;4&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;km&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - millas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;5&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;5&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Milla&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - km&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;6&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">   </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif c == &quot;6&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;Metros&quot;, scon</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;1 - Yarda&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;2 - Pie&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;7&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif ca == &quot;2&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;9&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">   </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;7&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;Yarda&quot;, scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Metros&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if c == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;8&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif c == &quot;8&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;Pie&quot;,scon</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;1 - metro&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;10&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;9&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;Cm&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - pulgada&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;11&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;10&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;pulgada&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - cm&quot;</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    print &quot;2 - mm&quot;</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    print </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;12&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif ca == &quot;2&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;14&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">   </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif c == &quot;11&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;mm&quot;,scon</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;1 - pulgada&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;13&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;12&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;Brazas&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Metros&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;16&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;13&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Litros&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Pulgadas cubicas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;2 - Pies cubicos&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;3 - Pintas Liquidas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;4 - Quarter liquidas&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;17&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif ca == &quot;2&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;19&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif ca == &quot;3&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;21&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif ca == &quot;4&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;23&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;14&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;Pulgadas Cubicas&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Litros&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;18&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;15&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Pies cubicos&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Litros&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;20&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">  </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;16&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Pintas liquidas&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Litros&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;22&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">   </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;17&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Quarter liquidas&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Litros&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i  = &quot;24&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;18&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Gramos&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Onzas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;25&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">   </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;19&quot;:    </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Stones&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - kg&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;28&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe  </span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif c == &quot;20&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;Quarter&quot;,scon</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;1 - Kg&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;30&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;21&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;Quintales Metricos&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Hundredweights&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;31&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;22&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Hundredweights&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Quintales Metricos&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;32&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">      else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;23&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Toneladas Metricas&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Libras&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:    </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;33&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;24&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Km/h&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Millas/h&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;2 - Nudos/h&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        i = &quot;35&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif ca == &quot;2&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;37&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;25&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Millas/h&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Km/h&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;36&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;26&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Nudos/h&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Km/h&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;38&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;27&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Horsepower&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Caballos vapor&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;40&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif c == &quot;28&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print &quot;Caballos vapor&quot;,scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;1 - Horsepower&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    print</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    ca = raw_input(con)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if ca == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        i = &quot;39&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print no_existe</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    else:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print &quot;No se encontro esa medida&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    os.system(&#39;espeak -ves &quot;No se encontro esa medida&quot;&#39;) </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if i == &quot;1&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        kg = float(raw_input(&quot;kg: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        libra = kg * 2.20462</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print libra, &quot;libras&quot; </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse) </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;2&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        libra = float(raw_input(&quot;libras: &quot;))   </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        kg = libra * 0.4535929094</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print kg, &quot;kg&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;3&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        kg = float(raw_input(&quot;kg: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        orza = kg * 35.274</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print orza, &quot;onzas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;: </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;4&quot;:   </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        onza = float(raw_input(&quot;Onzas: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        kg = onza * 0.0283494925</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print kg, &quot;kg&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;5&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        km = float(raw_input(&quot;km: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        milla = km * 0.62147</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print milla, &quot;millas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;6&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        milla = float(raw_input(&quot;milla: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        km = milla * 1.6093470879</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print km, &quot;km&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;7&quot;:#M yarda</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        M = float(raw_input(&quot;Metro: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        Yarda = M * 1.09361</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print Yarda, &quot;yardas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;8&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        yarda = float(raw_input(&quot;Yarda: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        M = yarda * 0.9144027578</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print M, &quot;metros&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;: </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;9&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        metro = float(raw_input(&quot;Metro: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        pie = metro * 3.28084</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print pie, &quot;pies&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;: </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;10&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        pie = float(raw_input(&quot;Pies: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        metro = pie * 0.3047999902</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print metro, &quot;metros&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;11&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        cm = float(raw_input(&quot;cm: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        pulgada = cm * 0.3047999902</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print pulgada, &quot;pulgadas&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;12&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        pulgada = float(raw_input(&quot;pulgada: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        cm = pulgada * 0.3047999902</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        print cm, &quot;cm&quot;</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;13&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    mm = float(raw_input(&quot;mm: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    pulgada = mm * 0.0394</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print pulgada, &quot;pulgadas&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;14&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    pulgada = float(raw_input(&quot;pulgada: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    mm = pulgada * 25.401</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print mm, &quot;mm&quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;15&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    metros = float(raw_input(&quot;metros: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    brazas = metros * 0.5468</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print brazas, &quot;brazas&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;16&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    brazas = float(raw_input(&quot;brazas: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    metros = brazas * 1.8288</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print metros, &quot;metros&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif i == &quot;17&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    litros = float(raw_input(&quot;Litros: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    pulgadas_c = litros * 61.0238</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print pulgadas_c, &quot;Pulgadas Cubicas&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif i == &quot;18&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    pulgadas_c = float(raw_input(&quot;Pulgadas cubicas: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    litros = pulgadas_c * 0.01639</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">     print litros, &quot;litros&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;19&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    litros = float(raw_input(&quot;Litros: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    pies_c = litros * 0.03531</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print pies_c, &quot;Pies Cubicos&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif i == &quot;20&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    pies_c = float(raw_input(&quot;Pies Cubicos: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    litros = pies_c * 28.3205</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print litros, &quot;litros&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif i == &quot;21&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    litros = float(raw_input(&quot;Litros: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    pintas_l = litros * 2.1134</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print pintas_l, &quot;Pintas Liquidas&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;22&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    pintas_l = float(raw_input(&quot;Pintas Liquidas: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    litros = pintas_l * 0.4732</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print litros, &quot;Litros&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif i == &quot;23&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    litros = float(raw_input(&quot;Litros: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    quarter_l = litros * 1.0567</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print quarter_l, &quot;Quarter Liquidas&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;24&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    quarter_l = float(raw_input(&quot;Quarter Liquidas: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    litros = quarter_l * 0.9463</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print litros, &quot;litros&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    elif i == &quot;25&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    gramos = float(raw_input(&quot;Gramos: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    onzas = gramos * 0.0353</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print onzas, &quot;Onzas&quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;26&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    onzas = float(raw_input(&quot;Onzas: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    gramos = onzas * 28.3495</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print gramos, &quot;Gramos&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;27&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    kg = float(raw_input(&quot;KG: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    stones = kg * 0.1570</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">     print stones, &quot;Stones&quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;28&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    stones = float(raw_input(&quot;Stones: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    kg =  stones * 6.350</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print kg, &quot;kg&quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F  </span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;29&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    kg = float(raw_input(&quot;KG: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    quarter = kg * 0.0790</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print quarter, &quot;Quarter s&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;30&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    quarter = float(raw_input(&quot;Quarter: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    kg = quarter * 12.701</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print kg, &quot;kg&quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;31&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    quintales_m = float(raw_input(&quot;Quintales Metricos: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    hundredweighs = quintales_m * 1.9680</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print hundredweighs, &quot;Hundredweighs&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;32&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    hundredweighs = float(raw_input(&quot;Hundredweighs: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    quintales_m = hundredweighs * 0.5082</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print quintales_m, &quot;Quintales Metricos&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;33&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    toneladas_m = float(raw_inut(&quot;Toneladas Metricas: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    libras = toneladas_m * 2205.620</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print libras, &quot;libras&quot;    </span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;34&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    libras = float(raw_input(&quot;Libras: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    toneladas_m = libras * 0.0004535</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print toneladas_m, &quot;Toneladas Metricas&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;35&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    km_h = float(raw_input(&quot;Km/H: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    m_h = km_h * 0.6214</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print m_h, &quot;Millas/H&quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;36&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    m_h = float(raw_input(&quot;Millas/H: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    km_h = m_h * 1.6093</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print km_h, &quot;Km/H&quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;37&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    km_h = float(raw_input(&quot;Km/H: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    nudos = km_h * 0.5396</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print nudos, &quot;Nudos&quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;38&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    nudos = float(raw_input(&quot;nudos: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    km_h = nudos * 1.8532</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print km_h, &quot;Km/h&quot;</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;39&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    caballos_v = float(raw_input(&quot;Caballos vapor: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    horsepower = caballos_v * 0.9863</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print horsepower, &quot;Horsepower&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    elif i == &quot;40&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    horsepower = float(raw_input(&quot;Horsepower: &quot;))</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    caballos_v = horsepower * 1.0139</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print caballos_v, &quot;Caballos Vapor&quot;</span><br style="color: rgb(153, 0, 0);">

<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        soq = raw_input(salir_o_quedarse)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    if soq == &quot;si&quot;:</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">          pass</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">        elif soq == &quot;no&quot;:</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">          i = F</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    time.sleep(3)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    os.system(&quot;reset&quot;)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">    </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print &quot;Espero que te haya sido útil&quot;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">os.system(&#39;espeak -ves &quot;.  Espero que te haya sido útil.&quot;&#39;)</span><br style="color: rgb(153, 0, 0);">

<span style="color: rgb(153, 0, 0);">os.system(&quot;reset&quot;)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">sys.exit()</span><br><br><br><br><br><br><br><br><div class="gmail_quote">El 6 de septiembre de 2010 18:26, Flavio Danesse <span dir="ltr">&lt;<a href="mailto:fdanesse@gmail.com" target="_blank">fdanesse@gmail.com</a>&gt;</span> escribió:<div>
<div></div><div class="h5"><br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Lo invité a integrar esta última idea a la interfaz de CeibalTerminal, cuando hagamos algún JAM dónde puedan participar los llevo, pero tiene que ser alguna actividad dónde ellos puedan participar y entiendan lo que hacen, de lo contrario no tiene sentido.<br>


<br>Por ahora están muy metidos investigando, la semana que viene nos vamos a reunir de nuevo y vamos a avanzar otro poquito.<br><br><br><div class="gmail_quote">El 6 de septiembre de 2010 15:43, anacim <span dir="ltr">&lt;<a href="mailto:ana.cichero@gmail.com" target="_blank">ana.cichero@gmail.com</a>&gt;</span> escribió:<br>


<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div>Sugerencias:<br>
Poner estas pequeñas maravillas en el portal?<br>
Inaugurar el espacio de los niños/adolescentes?<br>
<br>
2010/9/6 Pablo Flores &lt;<a href="mailto:pflores2@gmail.com" target="_blank">pflores2@gmail.com</a>&gt;:<br>
</div><div><div></div><div>&gt; Integrar este muchacho al JAM ya!!! :)tro <br><div><div></div><div>
&gt;&gt; Otro código del mismo alumno:<br>
&gt;&gt;<br>
&gt;&gt; #!usr/bin/python<br>
&gt;&gt; # -*- coding: UTF-8 -*-<br>
&gt;&gt;<br>
&gt;&gt; print &quot;Prepar flasheo, Agustin Zubiaga&quot;<br>
&gt;&gt; print &quot;&quot;&quot;<br>
&gt;&gt; &quot;&quot;&quot;<br>
&gt;&gt; import os<br>
&gt;&gt; import sys<br>
&gt;&gt;<br>
&gt;&gt; estado = True<br>
&gt;&gt;<br>
&gt;&gt; while estado:<br>
&gt;&gt;     print &quot;Estos son los pendrive conectados&quot;<br>
&gt;&gt;     os.system(&quot;ls /media/&quot;)<br>
&gt;&gt;     pend = raw_input(&quot;Escribe sin faltas el nombre del pendrive con el que<br>
&gt;&gt; vas a flashear: &quot;)<br>
&gt;&gt;     os.system(&quot;wget<br>
&gt;&gt; <a href="ftp://200.40.200.101/espacio_tecnico/imagenXo/uy802c.img" target="_blank">ftp://200.40.200.101/espacio_tecnico/imagenXo/uy802c.img</a>&quot;) # wget + la<br>
&gt;&gt; direccion del archivo uy802(c o posterior).img<br>
&gt;&gt;     os.system(&quot;wget <a href="ftp://200.40.200.101/espacio_tecnico/imagenXo/fs.zip" target="_blank">ftp://200.40.200.101/espacio_tec</a></div></div></div></div></blockquote></div></blockquote></div></div></div>
</blockquote></div><br>