Recent Posts

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...

MySQL Prepared Statements

4 minute read

MySQL Prepared Statements are the queries or statements they are prepared in a way that they can be used later on. They are complied while on creation and ca...