TipsMake
Newest

Tags : python documents

The vars () function in Python
Python 25 May 2019

The vars () function in Python

the vars () function in python returns the __dict__ attribute of the passed object if the object has the __dict__ attribute.

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

Zip () function in Python

the zip () function in python returns a zip object, a list iterator of tuples that combines elements from other iterators (made of iterable words).

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

Enumerate () function in Python

in python, the enumerate () function adds a counter before each iterable and returns the result as an enumerate object. the article will elaborate on the syntax, parameters and

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

Classmethod () function in Python

in python, the classmethod () function returns a class method for the function. how is the syntax of classmethod () function, what parameters does it have and how to use it?

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

All () function in Python

in python, all () returns true when all iterable elements are true or iterable empty and return false in the remaining cases. how does the function all () have syntax, what

Read More
Python functions are user defined
Python 25 May 2019

Python functions are user defined

besides the built-in python functions, you can also define python functions yourself, these functions are called user-defined functions (python). what are the benefits of using

Read More
For in Python loop
Python 25 May 2019

For in Python loop

in this article, we will learn more about for for loop in python as well as its variations, how to use for to repeat a string of elements in python such as list, string or other

Read More