• Tuple () function in Python

    Tuple () function in Python
    The built-in function tuple () in Python is used to create a tuple.
  • 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).
  • 5 functional programming languages ​​you should know

    5 functional programming languages ​​you should know
    If you take the time to learn programming trends on the Internet, you've probably heard of functional programming. Here are 5 functional programming languages ​​you should know.
  • Learn Class and Object in Python

    Learn Class and Object in Python
    Python is an object-oriented programming language. Unlike procedural programming, which emphasizes functions, object-oriented programming focuses on objects. This article
  • Inheritance (Inheritance) in Python

    Inheritance (Inheritance) in Python
    Inheriting in object-oriented programming allows us to declare new classes to re-use the parent class's functions and attributes and extra functions. In this article, we will
  • Multiple Inheritance in Python

    Multiple Inheritance in Python
    Inheritance allows us to declare the new class to re-use the parent class's functions and attributes and extra functions. In this article, Quantrimang will continue the lesson
  • Programming blockchain part 3: Python programming language

    Programming blockchain part 3: Python programming language
    Guido van Rossum, a Dutch programmer, created Python in 1991. Python is based on a simple philosophy: Minimalist. One of the interesting things about Python is that it combines
  • Stack operator in Python

    Stack operator in Python
    You can change the meaning of the operator in Python depending on the operand used and we call that operator overloading. Quantrimang will learn more about this content through
  • Complex () function in Python

    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 ()
  • The compile () function in Python

    The compile () function in Python
    The compile () function returns a code object in Python from the specified source. So how to use compile () function? Please find out in this article.
  • The delattr () function in Python

    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
  • The dict () function in Python

    The dict () function in Python
    In Python, the dict () function creates a dictionary type value. Quantrimang will learn more about the syntax, parameters and usage of the dict () function through this article.
  • The function dir () in Python

    The function dir () in Python
    The dir () function in Python returns a list of valid properties of the object. Quantrimang will learn more about this function content through the article. Invites you to read
  • Divmod () function in Python

    Divmod () function in Python
    Learn more about the syntax, parameters and usage of the built-in divmod () function in Python with Quantrimang.
  • Iterator object in Python

    Iterator object in Python
    Iterators are objects that allow us to take each of its elements, this action can be repeated. In this article, Quantrimang will discuss with you how the iterator works in Python
  • 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
  • The float () function in Python

    The float () function in Python
    The float () function in Python converts the value specified to a floating-point number. How does the float () function have a syntax, what parameters do you have, how can you
  • The eval () function in Python.

    The eval () function in Python.
    In this article, Quantrimang will continue to introduce you to a built-in function in Python, eval (). Eval () is an interesting utility that allows you to run Python code (this
  • Hex () function in Python

    Hex () function in Python
    The hex () function is one of Python's built-in functions, used to convert an integer into the corresponding hexadecimal form.
  • Exec () function in Python

    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?