top of page
Search
Rajesh Singh
Apr 1, 20202 min read
For Loop in Python with Example
for () 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...
22 views0 comments
Rajesh Singh
Mar 29, 20201 min read
Python 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 ; ;...
5,414 views0 comments
Rajesh Singh
Mar 26, 20201 min read
Python 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, '=',...
153 views0 comments
bottom of page