Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/convert.py
diff options
context:
space:
mode:
authorCristhofer Travieso <cristhofert97@gmail.com>2012-07-05 11:37:18 (GMT)
committer Cristhofer Travieso <cristhofert97@gmail.com>2012-07-05 11:37:18 (GMT)
commit7e830159e2c873fa9f1d3a7b8d244451cfa8f56b (patch)
treec347357382e44e564eebb902974c61180ea9ec2e /convert.py
parentb9c22c8e1d80aa9f2f9ecfd029184a849f01c8a7 (diff)
Canbie un spinbtn por una label y agrege un btn para invertir
Diffstat (limited to 'convert.py')
-rw-r--r--convert.py29
1 files changed, 15 insertions, 14 deletions
diff --git a/convert.py b/convert.py
index dba63d5..484daa6 100644
--- a/convert.py
+++ b/convert.py
@@ -20,7 +20,8 @@
dic = {}
-lenght = {"Metro": 1, "Yarda": 1.09361, "Pie": 3.28084, "Brazas": 0.5468}
+lenght = {"Metro": 1, "Km": 1000, "cm": 0.01, "Yarda": 1.09361, "Pie": 3.28084,
+ "Brazas": 0.5468}
speed = {}
area = {}
weight = {}
@@ -28,40 +29,40 @@ volume = {}
time = {}
-def conver_lenght(number, unit, to_unit):
+def convert_lenght(number, unit, to_unit):
_unit = number * lenght[unit]
- return _unit * lenght[unit]
+ return _unit * lenght[to_unit]
-def conver_time(number, unit, to_unit):
+def convert_time(number, unit, to_unit):
_unit = number * time[unit]
- return _unit * time[unit]
+ return _unit * time[to_unit]
-def conver_volume(number, unit, to_unit):
+def convert_volume(number, unit, to_unit):
_unit = number * volume[unit]
- return _unit * volume[unit]
+ return _unit * volume[to_unit]
-def conver_area(number, unit, to_unit):
+def convert_area(number, unit, to_unit):
_unit = number * area[unit]
- return _unit * area[unit]
+ return _unit * area[to_unit]
-def conver_weight(number, unit, to_unit):
+def convert_weight(number, unit, to_unit):
_unit = number * weight[unit]
- return _unit * weight[unit]
+ return _unit * weight[to_unit]
-def conver_speed(number, unit, to_unit):
+def convert_speed(number, unit, to_unit):
- _unit = number * speed[unit]
- return _unit * speed[unit]
+ _unit = number * speed[to_unit]
+ return _unit * speed[to_unit]
def return_list(type_u):