• The function id () in Python

    The function id () in Python
    The built-in function id () in Python returns a single integer value that identifies an object.
  • The ord () function in Python

    The ord () function in Python
    The built-in ord () function in Python returns an integer representing the Unicode code of the specified character.
  • The input () function in Python

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

    Type () function in Python
    The built-in function type () in Python returns the type of object passed as parameter.
  • Print () function in Python

    Print () function in Python
    The print () function in Python works to display the screen magic when the program executes.
  • Sum () function in Python

    Sum () function in Python
    The built-in function sum () in Python returns the sum of all numbers in iterable.
  • __Import __ () function in Python

    __Import __ () function in Python
    __Import __ () is an advanced function called by the import statement in Python
  • The function hasattr () in Python

    The function hasattr () in Python
    The hasattr () function in Python is used to check if the input object has the property you want to find.
  • Filter () function in Python

    Filter () function in Python
    How is the filter () function syntax, what parameters and how does it work? Invites you to read the track.
  • Int () function in Python

    Int () function in Python
    The int () function in Python returns an integer object from any number or string.
  • 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.
  • Getattr () function in Python

    Getattr () function in Python
    The getattr () function in Python returns the value of the property you want to find, if the object does not have this property the function will return the default value provided.
  • 11 tips for learning Python for 'newbie'

    11 tips for learning Python for 'newbie'
    We believe that the first step in learning any programming language is to ensure that you understand how to learn because this is arguably the most important skill related to
  • The globals () function in Python

    The globals () function in Python
    The globals () function in Python returns a dictionary containing the variables defined in the global namespace.
  • Python locals () function

    Python locals () function
    The locals () function in Python returns a dictionary containing the variables defined in the local namespace.
  • List () function in Python

    List () function in Python
    List () creates a list in Python. So what is the syntax of list () function, what parameters does it have and how to use it? Invites you to read the track.
  • Datetime in Python

    Datetime in Python
    In this article, we will work with you to learn how to handle dates and times in Python with specific examples to make it easier to visualize and capture functions better. Invites
  • 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.
  • 5 choose the best Python IDE for you

    5 choose the best Python IDE for you
    In order to learn well Python, it is essential that you find yourself an appropriate IDE to develop. Quantrimang would like to introduce some of the best environments to help
  • 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.