Skip to main content

Diving into Modules - Math Module

 >Math Module - Overall explanation


Source: freepik


Introduction

Other than Python built-in functions, there are numerous functions which can be found in some packages which need to be imported when needed which are called modules

Such a module in python is the math module. Python's standard library provides a module viz. math for math functions that work with all number types except complex numbers.
The Math module in Python is enriched with plenty of functions.

Note!: To use the math module one must import it first into the Python compiler one has been working with. The syntax to do so is given below:

import math


FUNCTIONS IN MATH MODULE


ceil(): This function returns the closest just above integer when a value has been passed.

Syntax:
x = math.ceil(2.4)
print(x)
floor(): This function returns the closest just below integer when a value has been passed.

Syntax:
y = math.floor(2.4)
print(y)
fabs(): This function returns the absolute number in floats when a negative or positive value has been passed in float or integer form.

Syntax:
print(math.fabs(2.4))
print(math.fabs(-6.8))
print(math.fabs(-27))
print(math.fabs(78))

More functions based on this module will be continued in a later blog post...

©SGPython

Comments

Popular posts from this blog

Our view towards Python (as a programming language)

  Python - The language of the future Introduction When we hear the term programming language, we usually talk about high-level programming language which are those programming language having a lucid (or easy-to-read) syntax and are later converted to low-level language (binary) , which is understandable by the computer.  Programming language has always been an area of interest over the passing years since the very early days of ' Fortran ' (created by John Backus at  IBM ). To this day, dozens of programming language has been created by different 'Computer Scientists' around the world. What is Python? What is Python? Many of you will describe a large scary snake 🐍, which isn't actually wrong 😅. But here we are talking about a programming language. Similarly, Python is also a high-level and interepreted programming language created by  Guido van Rossum in the late 1980s . It was first released in 1991 as a successor to ABC Programming language . It known fo...

Factorial of a Number by a User-Defined Function (PCTS)

 Factorial of a Number There are a number of ways to find the factorial of a number (obviously, it going to a whole number 😆). Out of all of them today, I'm going to show you the user-defined code I created to find the factorial of any whole number. Trust me, it's cool 😎 just give it a try...

For Loops

 The for loop By  polygraphus  on  shutterstock Def: The for loop is also known as the counting loop and is designed to process the items of any sequence, such as a list or a string, one by one. General form of for loop: The general form of the for loop is given below:      for <variable> in <sequence>:          statements to repeat