learning python
-
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.
-
The slice () function in Python
the slice () function in python returns a slice object that helps you determine how to cut an existing string.
-
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.
-
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.
-
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.
-
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.
-
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 the track.
-
The function set () in Python
in this article, tipsmake.com will learn with you about set (), syntax, parameters and specific examples. invites you to read the track.
-
Issubclass () function in Python
the issubclass () function is built into python to check if an object is a subclass of classinfo.
-
The function frozenset () in Python
frozenset () is a built-in function in python, receiving input as an iterable object and returning the frozenset object unchanged.
-
Decorator in Python
decorator is used a lot in python. so how to create a decorator and why you should use it. let's go find the answer!
-
How to use Closure in Python
in this article, tipsmake.com will work with you to learn about closure in python, how to define a closure and why you should use it. let's go find the answer!