Bueno, luego de dos talleres y a 3 semanas desde el 1º y todavía no les he explicado funciones.<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);"><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><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);"><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><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);"><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><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);">
<span style="color: rgb(153, 0, 0);"> pass</span><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);">
<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><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);"><span style="color: rgb(153, 0, 0);"> pass</span><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);"><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><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);">
<span style="color: rgb(153, 0, 0);"> pass</span><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);">
<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><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);"><span style="color: rgb(153, 0, 0);"> pass</span><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);"><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><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);">
<span style="color: rgb(153, 0, 0);"> pass</span><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);">
<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><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);"><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 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">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;">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 class="im">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 class="h5">
>> 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_tecnico/imagenXo/fs.zip</a>")<br>
>> # wget + la direccion del archivo fs.zip<br>
>> os.system("wget<br>
>> <a href="ftp://200.40.200.101/espacio_tecnico/blacklist/blacklistCeibal.zip" target="_blank">ftp://200.40.200.101/espacio_tecnico/blacklist/blacklistCeibal.zip</a>") # wget<br>
>> + la direccion del archivo blacklist.zip<br>
>> os.system("unzip blacklist.zip") # Descomprime blacklist.zip<br>
>> os.system("cp uyb02c.img /media/" + pend + "/") # Copia uy802c.img al<br>
>> pendrive<br>
>> os.system("cp fs.zip /media/" + pend + "/")<br>
>> os.system("cp blacklist /media/" + pend + "/")<br>
>> os.system("cp blacklist.sig /media/" + pend + "/")<br>
>> os.system("rm uy802c.img") # Borra uy802c.img de la XO (no del<br>
>> pendrive)<br>
>> os.system("rm blacklist.zip")<br>
>> os.system("rm blacklist")<br>
>> os.system("rm blacklist.sig")<br>
>> os.system("rm fs.zip")<br>
>><br>
>> re = raw_input("Si no sabes flashear escribe: pasos. Si los conoces<br>
>> escribe si para reiniciar y comenzar a flashear: ")<br>
>><br>
>> if re == "pasos":<br>
>> print "Enciende la XO con el cargador, el pendrive y presionando<br>
>> los cuatro botones de juego de la derecha"<br>
>> print "Cuando te aparezca (Relase the game keys to continue)<br>
>> suelta los botones y espera el proceso llevara aprox. 12 min."<br>
>> print "Luego la XO se reiniciara y no desconectes el pendrive<br>
>> hasta que te prenda totalmente si lo desconectas tu XO quedara bloqueada"<br>
>> print "Y... Ya tienes tu XO flasheada"<br>
>> re2 = raw_input("¿Deseas reiniciar? (si/no) ")<br>
>> if re2 == "si":<br>
>> estado = False<br>
>> if re2 == "no":<br>
>> os.system("clear")<br>
>> sys.exit()<br>
>> if re == "si":<br>
>> estado = False<br>
>> else:<br>
>> os.system("clear")<br>
>> pass<br>
>><br>
>> os.system("reboot")<br>
>><br>
>><br>
>><br>
>><br>
>> El 4 de septiembre de 2010 20:37, Flavio Danesse <<a href="mailto:fdanesse@gmail.com" target="_blank">fdanesse@gmail.com</a>><br>
>> escribió:<br>
>>><br>
>>> Si Gabriel, fíjate que di un taller de casi 2 horas para explicar como<br>
>>> usar la terminal y nano, el interprete de python y escribir algunas cosas en<br>
>>> un archivo para ejecutarlo, mostrando algunos tipos de datos de python y<br>
>>> explicando sobre la marcha las cosas que surgían, ahora con este código<br>
>>> fijate todo lo que puedo sacar para explicar cosas nuevas.<br>
>>><br>
>>> Obviamente, la mayoría de los que vinieron al taller ya tienen un perfil<br>
>>> netamente informático y se han metido en la terminal, pero de python ninguno<br>
>>> sabía nada.<br>
>>><br>
>>><br>
>>><br>
>>><br>
>>> El 4 de septiembre de 2010 20:25, Gabriel Eirea <<a href="mailto:geirea@gmail.com" target="_blank">geirea@gmail.com</a>><br>
>>> escribió:<br>
>>>><br>
>>>> Ah, el maravilloso mundo de la recursividad. Tenés para divertirte<br>
>>>> explicando mejores formas de resolver esto y por qué.<br>
>>>><br>
>>>> Más allá de eso, está muy bueno el esfuerzo del estudiante y excelente<br>
>>>> tu iniciativa con este taller Flavio.<br>
>>>><br>
>>>> Saludos,<br>
>>>><br>
>>>> Gabriel<br>
>>>><br>
>>>> El día 4 de septiembre de 2010 20:01, Flavio Danesse<br>
>>>> <<a href="mailto:fdanesse@gmail.com" target="_blank">fdanesse@gmail.com</a>> escribió:<br>
>>>> > Casi sin permiso de dirección, porque quería empezar al inicio del año<br>
>>>> > pero<br>
>>>> > me fueron tirando largas por esto, por aquello, etc, como suele<br>
>>>> > suceder,<br>
>>>> > logré el pasado martes, comenzar con un tallercito de python con<br>
>>>> > alumnos de<br>
>>>> > 1º 2º y 3º de ciclo básico en la UTU de Rafael Peraza.<br>
>>>> ><br>
>>>> > Invité a todas las clases aclarando que era totalmente fuera de<br>
>>>> > programa y<br>
>>>> > que nada tenía que ver con las clases, les aclaré además que no era<br>
>>>> > sencillo<br>
>>>> > y que llevaba tiempo, práctica y paciencia.<br>
>>>> > Tuve 12 alumnos presentes, creamos un grupo de google para estar<br>
>>>> > contactados<br>
>>>> > y luego del taller les entregué un material en pdf preparado<br>
>>>> > especialmente<br>
>>>> > para ellos para que sirviera como guía para que ellos aprendieran a<br>
>>>> > manejar<br>
>>>> > las cosas más sencillas que fue lo que vimos en el taller.<br>
>>>> ><br>
>>>> > Algunos, comenzaron a desarrollar pequeñas cosas colaborando a través<br>
>>>> > del<br>
>>>> > google group, sobre temas que ellos mismos eligieron libremente.<br>
>>>> > Hoy, un alumno de 1º mandó una calculadora que comparto con ustedes:<br>
>>>> ><br>
>>>> > #!usr/bin/python<br>
>>>> > # -*- coding: UTF-8 -*-<br>
>>>> ><br>
>>>> > import os<br>
>>>> > import sys<br>
>>>> ><br>
>>>> > a = raw_input("Escribe el operando: ")<br>
>>>> > o = raw_input("¿Qué operación deseas hacer? (* , + , - , / , %): ")<br>
>>>> > b = raw_input("Escribe el operador: ")<br>
>>>> ><br>
>>>> > if o == "+":<br>
>>>> > print a + o + b + " es:"<br>
>>>> > print float(a) + float(b)<br>
>>>> > salir_o_quedarse = raw_input("¿Vas a hacer otra cuenta? (si/no):<br>
>>>> > ")<br>
>>>> > if salir_o_quedarse == "si":<br>
>>>> > os.system("clear")<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > elif salir_o_quedarse == "no":<br>
>>>> > os.system("clear")<br>
>>>> > sys.exit()<br>
>>>> > else:<br>
>>>> > print "No se reconoce la accion"<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > elif o == "-":<br>
>>>> > print a + o + b + " es:"<br>
>>>> > print float(a) - float(b)<br>
>>>> > salir_o_quedarse = raw_input("¿Vas a hacer otra cuenta? (si/no):<br>
>>>> > ")<br>
>>>> > if salir_o_quedarse == "si":<br>
>>>> > os.system("clear")<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > elif salir_o_quedarse == "no":<br>
>>>> > os.system("clear")<br>
>>>> > sys.exit()<br>
>>>> > else:<br>
>>>> > print "No se reconoce la accion"<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > elif o == "*":<br>
>>>> > print a + o + b + " es:"<br>
>>>> > print float(a) * float(b)<br>
>>>> > salir_o_quedarse = raw_input("¿Vas a hacer otra cuenta? (si/no):<br>
>>>> > ")<br>
>>>> > if salir_o_quedarse == "si":<br>
>>>> > os.system("clear")<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > elif salir_o_quedarse == "no":<br>
>>>> > os.system("clear")<br>
>>>> > sys.exit()<br>
>>>> > else:<br>
>>>> > print "No se reconoce la accion"<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > elif o == "/":<br>
>>>> > print a + o + b + " es:"<br>
>>>> > print float(a) / float(b)<br>
>>>> > salir_o_quedarse = raw_input("¿Vas a hacer otra cuenta? (si/no):<br>
>>>> > ")<br>
>>>> > if salir_o_quedarse == "si":<br>
>>>> > os.system("clear")<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > elif salir_o_quedarse == "no":<br>
>>>> > os.system("clear")<br>
>>>> > sys.exit()<br>
>>>> > else:<br>
>>>> > print "No se reconoce la accion"<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > elif o == "%":<br>
>>>> > print a + o + b + " es:"<br>
>>>> > print float(a) * float(b) / 100<br>
>>>> > salir_o_quedarse = raw_input("¿Vas a hacer otra cuenta? (si/no):<br>
>>>> > ")<br>
>>>> > if salir_o_quedarse == "si":<br>
>>>> > os.system("clear")<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > elif salir_o_quedarse == "no":<br>
>>>> > os.system("clear")<br>
>>>> > sys.exit()<br>
>>>> > else:<br>
>>>> > print "No se reconoce la accion"<br>
>>>> > os.system("python calculadora.py")<br>
>>>> > else:<br>
>>>> > print "No se reconoce la operación que deseas realizar"<br>
>>>> > os.system("python calculadora.py")<br>
>>>> ><br>
>>>> > _______________________________________________<br>
>>>> > Olpc-uruguay mailing list<br>
>>>> > <a href="mailto:Olpc-uruguay@lists.laptop.org" target="_blank">Olpc-uruguay@lists.laptop.org</a><br>
>>>> > <a href="http://lists.laptop.org/listinfo/olpc-uruguay" target="_blank">http://lists.laptop.org/listinfo/olpc-uruguay</a><br>
>>>> ><br>
>>>> ><br>
>>>> _______________________________________________<br>
>>>> Olpc-uruguay mailing list<br>
>>>> <a href="mailto:Olpc-uruguay@lists.laptop.org" target="_blank">Olpc-uruguay@lists.laptop.org</a><br>
>>>> <a href="http://lists.laptop.org/listinfo/olpc-uruguay" target="_blank">http://lists.laptop.org/listinfo/olpc-uruguay</a><br>
>>><br>
>><br>
>><br>
>> _______________________________________________<br>
>> Olpc-uruguay mailing list<br>
>> <a href="mailto:Olpc-uruguay@lists.laptop.org" target="_blank">Olpc-uruguay@lists.laptop.org</a><br>
>> <a href="http://lists.laptop.org/listinfo/olpc-uruguay" target="_blank">http://lists.laptop.org/listinfo/olpc-uruguay</a><br>
>><br>
><br>
><br>
> _______________________________________________<br>
> Olpc-uruguay mailing list<br>
> <a href="mailto:Olpc-uruguay@lists.laptop.org" target="_blank">Olpc-uruguay@lists.laptop.org</a><br>
> <a href="http://lists.laptop.org/listinfo/olpc-uruguay" target="_blank">http://lists.laptop.org/listinfo/olpc-uruguay</a><br>
><br>
><br>
_______________________________________________<br>
Olpc-uruguay mailing list<br>
<a href="mailto:Olpc-uruguay@lists.laptop.org" target="_blank">Olpc-uruguay@lists.laptop.org</a><br>
<a href="http://lists.laptop.org/listinfo/olpc-uruguay" target="_blank">http://lists.laptop.org/listinfo/olpc-uruguay</a><br>
</div></div></div></div></blockquote></div><br>
</blockquote></div><br>