TipsMake
Newest

Tags : python learning

The input () function in Python
Python 17 June 2019

The input () function in Python

python's built-in input () function allows users to enter data, convert it into a string, and return the entered content.

Read More
Complex () function in Python
Python 25 May 2019

Complex () function in Python

in python, the complex () function returns a complex number when the user provides a virtual and real part, or turns a string into a complex number. how does the complex ()

Read More
The delattr () function in Python
Python 25 May 2019

The delattr () function in Python

the delattr () function in python is used to delete an attribute from the specified object. how does the delattr () function have a syntax, what parameters do you have, please

Read More
Divmod () function in Python
Python 25 May 2019

Divmod () function in Python

learn more about the syntax, parameters and usage of the built-in divmod () function in python with quantrimang.

Read More
Exec () function in Python
Python 25 May 2019

Exec () function in Python

the exec () function used to execute python programs dynamically can be string or object code. how does exec () function syntax, what parameters do it have, and how is it used?

Read More
Callable () function in Python
Python 25 May 2019

Callable () function in Python

callable () in python checks whether objects can be called. if the object is allowed to call, the function returns true, otherwise it returns false. how does the callable ()

Read More
The chr () function in Python
Python 25 May 2019

The chr () function in Python

in python, the chr () function returns a character (a string) from an integer that represents the unicode of the returned character.

Read More