11.12. Maths Functions#

  • classic division

  • // floor division

    • rounded off to smallest number

    • 3//2=1

    • gives remainder

    • 3%2=1

  • abs

    • absolute value

  • **

    • power

  • round(3.58,1) ==> 3.6