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"><<a href="mailto:fdanesse@gmail.com">fdanesse@gmail.com</a>></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("reset")</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 "<<<<<<< AguPlayer >>>>>>"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print "<<<< Agustin Zubiaga >>>>"</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("Escribe la direccion de la cancion (s para salir): ")</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 == "s": </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 == "h":</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 "===== Reproduciendo ====="</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("(r) reproducir, (s) stop, (e) elegir otra cancion, (S) Salir: ")</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> if ps == "S":</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 == "s":</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 "===== Parado ====="</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> elif ps == "e":</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 == "r":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "===== Reproduciendo ====="</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 "No se reconoce la acción" </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 "AguPlayer no puede leer", 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("reset")</span><br style="color: rgb(153, 0, 0);">
<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print "Espero que te halla gustado"</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("reset")</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 = "¿Deseas Continuar haciendo operaciones? (si/no) "</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">descripcion_de_operacion = ""</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">accion_desconocida = "No se reconoce la operación que deseas realizar"</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("Escribe el operando: ")</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> o = raw_input("¿Qué operación deseas hacer? (* , + , - , / , %): ")</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> b = raw_input("Escribe el operador: ")</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 + " = "</span><br style="color: rgb(153, 0, 0);">
<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> if o == "+":</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 == "si":</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 == "no":</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 == "-":</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 == "si":</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 == "no":</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 == "*":</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 == "si":</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 == "no":</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 == "/":</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 == "si":</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 == "no":</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 == "%":</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 == "si":</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 == "no":</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("clear")</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("reset")</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 = "No existe la conversion que deseas hacer"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">salir_o_quedarse = "¿Deseas seguir haciendo conversiones?: "</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 = "Escribe el numero correspondiente a la medida que deseas convertir: "</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">scon = "se puede convertir a: "</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print " >>>>>>>>>>>>>>>>> Conversor <<<<<<<<<<<<<<<<<<<<<<"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">os.system('espeak -ves ". Bienvenido al Conversor de Cristofer Travieso. Nueva versión con aportes de Agustin Zubiaga. Espero sea de Utilidad ."')</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 "1 - kg"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "2 - libra"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "3 - onza"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "4 - km"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "5 - milla"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "6 - metro"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "7 - yarda"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "8 - pie "</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "9 - cm"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "10 - pulgada"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "11 - mm"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "12 - brazas"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "13 - litros"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "14 - pulgadas cubicas"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "15 - pies cubicos"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "16 - pintas Liquidas"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "17 - quarter liquidas"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "18 - gramos"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "19 - stones"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "20 - quarter"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "21 - quintales metricos"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "22 - hundredweights"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "23 - toneladas metricas"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "24 - Km/h"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "25 - millas/h"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "26 - nudos"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "27 - horsepower"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "28 - caballos vapor"</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('espeak -ves "Escribe la medida que deseas convertir."') </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> c = raw_input("Escribe la medida que deseas convertir: ")</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 == "1":</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 "Kg",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Libra"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "2 - Onza"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "3 - Stones"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "4 - Quarter"</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 == "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);"> elif ca == "2":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "3" </span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> elif ca == "3":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "27"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> elif ca == "4":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "29"</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 == "2":</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 "Libra",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - kg"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "2 - toneladas metricas"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "2"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> elif ca == "2":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "34"</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 == "3":</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 "Onza",scon</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "1 - kg"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "2 - gramos"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "4"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> elif ca == "2":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "26"</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 == "4":</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 "km",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - millas"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "5"</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 == "5":</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 "Milla",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - km"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "6"</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 == "6":</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 "Metros", scon</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "1 - Yarda"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "2 - Pie"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "7"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> elif ca == "2":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "9"</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 == "7":</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 "Yarda", scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Metros"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "8"</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 == "8":</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 "Pie",scon</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "1 - metro"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "10"</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 == "9":</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 "Cm",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - pulgada"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "11"</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 == "10":</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 "pulgada",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - cm"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "2 - mm"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "12"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> elif ca == "2":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "14"</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 == "11":</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 "mm",scon</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "1 - pulgada"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "13"</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 == "12":</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 "Brazas",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Metros"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "16"</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 == "13":</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 "Litros",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Pulgadas cubicas"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "2 - Pies cubicos"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "3 - Pintas Liquidas"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "4 - Quarter liquidas"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "17"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> elif ca == "2":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "19"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> elif ca == "3":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "21"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> elif ca == "4":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "23"</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 == "14":</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 "Pulgadas Cubicas",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Litros"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "18"</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 == "15":</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 "Pies cubicos",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Litros"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "20"</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 == "16":</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 "Pintas liquidas",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Litros"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "22"</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 == "17":</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 "Quarter liquidas",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Litros"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "24"</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 == "18":</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 "Gramos",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Onzas"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "25"</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 == "19": </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 "Stones",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - kg"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "28"</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 == "20":</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 "Quarter",scon</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "1 - Kg"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "30"</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 == "21":</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 "Quintales Metricos",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Hundredweights"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "31"</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 == "22":</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 "Hundredweights",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Quintales Metricos"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "32"</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 == "23":</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 "Toneladas Metricas",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Libras"</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 == "1": </span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "33"</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 == "24":</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 "Km/h",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Millas/h"</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> print "2 - Nudos/h"</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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> i = "35"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> elif ca == "2":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "37"</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 == "25":</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 "Millas/h",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Km/h"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "36"</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 == "26":</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 "Nudos/h",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Km/h"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "38"</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 == "27":</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 "Horsepower",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Caballos vapor"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "40"</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 == "28":</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 "Caballos vapor",scon</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> print "1 - Horsepower"</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 == "1":</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);"> i = "39"</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 "No se encontro esa medida"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> os.system('espeak -ves "No se encontro esa medida"') </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 == "1":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> kg = float(raw_input("kg: "))</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, "libras" </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 == "si":</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 == "no":</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 == "2":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> libra = float(raw_input("libras: ")) </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, "kg"</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 == "si":</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 == "no":</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 == "3":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> kg = float(raw_input("kg: "))</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, "onzas"</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 == "si":</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 == "no": </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 == "4": </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> onza = float(raw_input("Onzas: "))</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, "kg"</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 == "si":</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 == "no":</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 == "5":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> km = float(raw_input("km: "))</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, "millas"</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 == "si":</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 == "no":</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 == "6":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> milla = float(raw_input("milla: "))</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, "km"</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 == "si":</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 == "no":</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 == "7":#M yarda</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> M = float(raw_input("Metro: "))</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, "yardas"</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 == "si":</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 == "no":</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 == "8":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> yarda = float(raw_input("Yarda: "))</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, "metros"</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 == "si":</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 == "no": </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 == "9":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> metro = float(raw_input("Metro: "))</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, "pies"</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 == "si":</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 == "no": </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 == "10":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> pie = float(raw_input("Pies: "))</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, "metros"</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 == "si":</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 == "no":</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 == "11":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> cm = float(raw_input("cm: "))</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, "pulgadas"</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 == "si":</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 == "no":</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 == "12":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> pulgada = float(raw_input("pulgada: "))</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, "cm"</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 == "si":</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 == "no":</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 == "13":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> mm = float(raw_input("mm: "))</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, "pulgadas"</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 == "si":</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 == "no":</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 == "14":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> pulgada = float(raw_input("pulgada: "))</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, "mm"</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 == "si":</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 == "no":</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 == "15":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> metros = float(raw_input("metros: "))</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, "brazas"</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 == "si":</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 == "no":</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 == "16":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> brazas = float(raw_input("brazas: "))</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, "metros"</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 == "si":</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 == "no":</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 == "17":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> litros = float(raw_input("Litros: "))</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, "Pulgadas Cubicas"</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 == "si":</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 == "no":</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 == "18":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> pulgadas_c = float(raw_input("Pulgadas cubicas: "))</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, "litros"</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 == "si":</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 == "no":</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 == "19":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> litros = float(raw_input("Litros: "))</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, "Pies Cubicos"</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 == "si":</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 == "no":</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 == "20":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> pies_c = float(raw_input("Pies Cubicos: "))</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, "litros"</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 == "si":</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 == "no":</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 == "21":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> litros = float(raw_input("Litros: "))</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, "Pintas Liquidas"</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 == "si":</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 == "no":</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 == "22":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> pintas_l = float(raw_input("Pintas Liquidas: "))</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, "Litros"</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 == "si":</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 == "no":</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 == "23":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> litros = float(raw_input("Litros: "))</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, "Quarter Liquidas"</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 == "si":</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 == "no":</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 == "24":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> quarter_l = float(raw_input("Quarter Liquidas: "))</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, "litros"</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 == "si":</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 == "no":</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 == "25":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> gramos = float(raw_input("Gramos: "))</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, "Onzas"</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 == "si":</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 == "no":</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 == "26":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> onzas = float(raw_input("Onzas: "))</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, "Gramos"</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 == "si":</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 == "no":</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 == "27":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> kg = float(raw_input("KG: "))</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, "Stones"</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 == "si":</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 == "no":</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 == "28":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> stones = float(raw_input("Stones: "))</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, "kg"</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 == "si":</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 == "no":</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 == "29":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> kg = float(raw_input("KG: "))</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, "Quarter s"</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 == "si":</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 == "no":</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 == "30":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> quarter = float(raw_input("Quarter: "))</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, "kg"</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 == "si":</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 == "no":</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 == "31":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> quintales_m = float(raw_input("Quintales Metricos: "))</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, "Hundredweighs"</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 == "si":</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 == "no":</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 == "32":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> hundredweighs = float(raw_input("Hundredweighs: "))</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, "Quintales Metricos"</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 == "si":</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 == "no":</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 == "33":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> toneladas_m = float(raw_inut("Toneladas Metricas: "))</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, "libras" </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 == "si":</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 == "no":</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 == "34":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> libras = float(raw_input("Libras: "))</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, "Toneladas Metricas"</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 == "si":</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 == "no":</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 == "35":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> km_h = float(raw_input("Km/H: "))</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, "Millas/H"</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 == "si":</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 == "no":</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 == "36":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> m_h = float(raw_input("Millas/H: "))</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, "Km/H"</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 == "si":</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 == "no":</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 == "37":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> km_h = float(raw_input("Km/H: "))</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, "Nudos"</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 == "si":</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 == "no":</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 == "38":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> nudos = float(raw_input("nudos: "))</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, "Km/h"</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 == "si":</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 == "no":</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 == "39":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> caballos_v = float(raw_input("Caballos vapor: "))</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, "Horsepower"</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 == "si":</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 == "no":</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 == "40":</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);"> horsepower = float(raw_input("Horsepower: "))</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, "Caballos Vapor"</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 == "si":</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 == "no":</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("reset")</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 "Espero que te haya sido útil"</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">os.system('espeak -ves ". Espero que te haya sido útil."')</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">os.system("reset")</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"><<a href="mailto:fdanesse@gmail.com" target="_blank">fdanesse@gmail.com</a>></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"><<a href="mailto:ana.cichero@gmail.com" target="_blank">ana.cichero@gmail.com</a>></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 <<a href="mailto:pflores2@gmail.com" target="_blank">pflores2@gmail.com</a>>:<br>
</div><div><div></div><div>> Integrar este muchacho al JAM ya!!! :)tro <br><div><div></div><div>
>> Otro código del mismo alumno:<br>
>><br>
>> #!usr/bin/python<br>
>> # -*- coding: UTF-8 -*-<br>
>><br>
>> print "Prepar flasheo, Agustin Zubiaga"<br>
>> print """<br>
>> """<br>
>> import os<br>
>> import sys<br>
>><br>
>> estado = True<br>
>><br>
>> while estado:<br>
>> print "Estos son los pendrive conectados"<br>
>> os.system("ls /media/")<br>
>> pend = raw_input("Escribe sin faltas el nombre del pendrive con el que<br>
>> vas a flashear: ")<br>
>> os.system("wget<br>
>> <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>") # wget + la<br>
>> direccion del archivo uy802(c o posterior).img<br>
>> os.system("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>