Break function in Python

In the previous article we have gone through the various approaches of writing a program to print multiplication tables, now let us explore the break function in Python. Before we explore the concept and usage let us look at a problem. We are required to get the smallest divisor of a number such that the … Read more

Multiplication Table of a Number in Python

In the previous article we explore the For Loop structure, now let us take a look at an example case of printing Multiplication Table of a Number in Python. If a user provides the number 3, we return 3, 6, 9, 12, 15, 18, 21, 27 and 30. If the number specified was 5 instead … Read more