diff options
Diffstat (limited to 'day1/exercise/round_float.py')
-rw-r--r-- | day1/exercise/round_float.py | 12 |
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 |