BLOG

Latest Articles

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

How to use git revert properly [4 Different Ways]

To revert or undo in git is facilitated by the git revert function. git revert command provides a unique way of undoing changes to a specific commit while …

By admin · 9 min read · GIT

Python any() function Examples [Beginners]

Python any() function is a built-in function that works very similarly to OR logic gate. Learn how any() function works by taking examples of lists, tuples, …

By bashiralam · 10 min read · Python