summaryrefslogtreecommitdiff
path: root/day1/exercise/round_float.py
diff options
context:
space:
mode:
authorSantosh G. Vattam2009-10-08 22:48:59 +0530
committerSantosh G. Vattam2009-10-08 22:48:59 +0530
commit7e1335294c63d326a951c0fc5ecf4ee308583f8f (patch)
tree44f6ad4ad4a23246ff176d73ecbf19ca1aa02ab9 /day1/exercise/round_float.py
parent5f91fcae4a93410621e09ca6b0f68b37b3f2ab14 (diff)
parent7ffed006a6552f3151888fc8a8008867b119adfb (diff)
downloadworkshops-7e1335294c63d326a951c0fc5ecf4ee308583f8f.tar.gz
workshops-7e1335294c63d326a951c0fc5ecf4ee308583f8f.tar.bz2
workshops-7e1335294c63d326a951c0fc5ecf4ee308583f8f.zip
Branches merged.
Diffstat (limited to 'day1/exercise/round_float.py')
-rw-r--r--day1/exercise/round_float.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/day1/exercise/round_float.py b/day1/exercise/round_float.py
new file mode 100644
index 0000000..7c1b745
--- /dev/null
+++ b/day1/exercise/round_float.py
@@ -0,0 +1,12 @@
+# round using int
+n = 17.3 # any float
+int (n + .5)
+
+# round it off to first decimal place
+round(amount * 10) / 10.0
+
+# round it off to nearest 5 paise
+round(amount * 20) / 20.0
+
+# exchange two variables
+a, b = b, a