Recent Posts

Basics of Multi-threading in Python

8 minute read

Multi-threading in Python is often used when there are tasks related to I/O bound. But before going further, let’s take a few examples where multi-threading ...

Working with datetime in Python

10 minute read

Working with DateTime in Python can be a challenging job if we do not know the right module to do the right thing. Here we will explore some of the useful mo...

Intro to CNN with Keras

3 minute read

CNN with Keras is easiest way to create CNN (Convolutional Neural Networks. But Why? Images I used in this blog are not owned by me and the full credit goes ...

Python Generators

2 minute read

Python Generators are kind of iterators which allows us to iterate through the values returned through the function using yield keyword. In simple words, gen...