Programming
The Ultimate Python Cheat Sheet for *args and **kwargs
A python kwargs is a dictionary of keyword arguments. we put two ** before kwargs which allows us to pass any number of keyword arguments. Python *args can be …
Python User Input Advanced Guide [In-Depth Tutorial]
Use python input() function to ask user for input in Python. Collect integer or floating number or string as input. COllect multiple inputs in single line
Python ceil() function Explained [Easy Examples]
the python ceil() function is a mathematical function that returns integer value greater than then argument
Python floor() function Examples [Beginners]
python floor() function returns the largest integer not greater than its argument. we can apply python floor() function on integers, decimal, and negative …
Python super() function explained [Easy Examples]
The Python super() function can only be used inside the child class to call the constructor and any other parent class method. We can use the supper() function …
