CATEGORY

Python

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 …

By bashiralam · 8 min read · Python

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 …

By bashiralam · 9 min read · Python

Python startswith() method explained [Easy Examples]

The Python startswith() method returns True if the string starts with the specified value, otherwise False. If we will not specify the starting position of the …

By bashiralam · 8 min read · Python

Numpy random Examples | rand() | randint() function

The Numpy random method in Python helps us to create random numbers. You can use random.rand(), random.randint(), random.uniform() function to generate random …

By bashiralam · 10 min read · Python