python documents

  • The function frozenset () in Python

    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.
  • Wool () function in Python

    Wool () function in Python

    how is the syntax of len () function, what parameters do it have and how is it used? invites you to read the track.
  • Python locals () function

    Python locals () function

    the locals () function in python returns a dictionary containing the variables defined in the local namespace.
  • Bookmark 5 best Python programming learning websites

    Bookmark 5 best Python programming learning websites

    if you are a developer or you are studying and want to stick with this industry, learn python to add a highlight in your journey.
  • The vars () function in Python

    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.
  • Zip () function in Python

    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).
  • Enumerate () function in Python

    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 usage of the function. invites you to read the track.
  • Classmethod () function in Python

    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? invites you to read the track.
  • All () function in Python

    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 parameters do we have, let's find out in this section.
  • More than 100 Python exercises have solutions (sample code)

    More than 100 Python exercises have solutions (sample code)

    more than 100 python code examples are shared by guy zhiwehu on github, however, the solution of this series is written on the old python version. following tipsmake.com will be vietnameseized and edited to suit python 3.x to help you learn and practice python.
  • Python functions are user defined

    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 these self-defined functions, the best way to define functions in python, we'll learn in this python lesson.
  • For in Python loop

    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 iterative objects.