Python arbitrary argument lists
When we define a function, we usually provide a specific name for each parameter in a function. However, there is
Read moreWhen we define a function, we usually provide a specific name for each parameter in a function. However, there is
Read moreThe Python keyword arguments is similar to the Python default argument values. In the keyword arguments, we require mentioning of
Read moreIn another post we have discussed how to declare and define a function in Python. In this post, we will
Read moreSome of the differences between the mutable object and immutable object are discussed here. If you do not know what
Read moreHere we will see some differences between the global statement and the nonlocal statement. If you you have no idea
Read moreThe Python nonlocal statement is similar to the global statement. The global statement allows modification of the global variables inside
Read moreThe Python global statement sole purpose is to make any object or variable have a global scope. If any local
Read moreThe Python del statement/keywords (also stands for delete) does the reverse of the assignment. Assigning a value to an object
Read moreHere we will see some differences between Python keywords and built-in names. If you are acquainted with both the terms
Read moreIn this post we will discuss the Python numeric literals and under this literal, there are three types of literals:
Read more