TipsMake
Newest

Tags : built-in python function

The reversed () function in Python
Python 13 January 2020

The reversed () function in Python

the reversed () function is one of the built-in functions in python, used to reverse the original string returning the iterator.

Read More
The round () function in Python
Python 30 December 2019

The round () function in Python

the round () function in python rounds a given number, returning that number as a floating point number, with the specified number of digits after the comma.

Read More
The next () function in Python
Python 25 November 2019

The next () function in Python

the next () function in python returns the next element in the iterator. you can add a default value to return if iterable is already the last element.

Read More
The pow () function in Python
Python 25 November 2019

The pow () function in Python

the pow () function built into python returns the value of x with the power of y (xy). if there is a third parameter, the function returns x to the power y, the module z.

Read More
The range () function in Python
Python 25 November 2019

The range () function in Python

the range () function built into python is used to create a sequence of numbers starting at 0 by default, incrementing 1 (by default) and ending at a specified number.

Read More
The map () function in Python
Python 04 September 2019

The map () function in Python

continuing with the topic of built-in functions in python, the article will introduce you to the map () function with syntax, usage as well as specific examples. invites you to

Read More