Rajesh SinghApr 1, 20202 min readFor Loop in Python with Examplefor () loop is a counting loop and repeats its body for a pre-defined number of times. It is a very versatile statement and has many...
Rajesh SinghMar 29, 20201 min readPython program to print even numbers between 1 to 100.Python program to print even numbers between 1 to 100. Program: for num in range(1,100): if num%2==0: print (num) Output: 2 4 6 8 10 ; ;...
Rajesh SinghMar 26, 20201 min readPython Program to Display the multiplication Table ?Python Program to Display the multiplication Table num = int(input("Enter number: ")) for i in range(1, 11): print(num, 'x', i, '=',...