the built-in function id () in python returns a single integer value that identifies an object.
the built-in ord () function in python returns an integer representing the unicode code of the specified character.
the built-in function type () in python returns the type of object passed as parameter.
the hasattr () function in python is used to check if the input object has the property you want to find.
how is the filter () function syntax, what parameters and how does it work? invites you to read the track.
the int () function in python returns an integer object from any number or string.
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.
the globals () function in python returns a dictionary containing the variables defined in the global namespace.
the built-in function tuple () in python is used to create a tuple.
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 is used to delete an attribute from the specified object. how does the delattr () function have a syntax, what parameters do you have, please
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 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
learn more about the syntax, parameters and usage of the built-in divmod () function in python with quantrimang.
the hex () function is one of python's built-in functions, used to convert an integer into the corresponding hexadecimal form.
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?
callable () in python checks whether objects can be called. if the object is allowed to call, the function returns true, otherwise it returns false. how does the callable ()
in python, the chr () function returns a character (a string) from an integer that represents the unicode of the returned character.
in this article we will learn how to use the break command and continue to change the flow of a loop in python.
what does the while loop in python do? what is the syntax and how to use while loop? those are the content we will approach in this python lesson.