Fork me on GitHub

Other articles


  1. Decimal to Change Number Precision

    The built in math functions in Python use binary approximations, giving some funky results when dealing with numbers containing decimals:

    >>> .1 + .2
    0.30000000000000004
    >>> round(100.00 / 3.000, 4)
    33.333300000000001
    

    One way to appropriately find the sum of decimals is to use strings

    >>> str(.1 + .2)
    '0.3 …
    read more
  2. Map Function in Python

    Today I discovered the map function in Python. Map causes some simple for loops to be verbose and unnecessary. Let's look at how to change a list of integers to a list of strings. First we'll use a for loop:

    >>> list = [1, 2, 3, 4, 5]
    >>> index = 0
    >>> for x …
    read more

Page 1 / 2 »

links

social