Featured

    Featured Posts

Nested Loops In Python

§  One loop inside another loop is called a Nested Loop.  §  Any number of loops can be defined inside another loop, i.e., there is no restriction for defining any number of loops. The nesting level can be defined at n times. for...

While loop In Python

while loop: §  If we want to execute a group of statements multiple times until some condition false, then we should go for while loop. Syntax:           while condition:                  ...

For loop in Python||Part-2

Write a program to display table for given number in Python  n=int(input('enter number')) for i in range(1,11):     t=n*i     print(n," * ",i," = ",t)   §  Write a program Calculate the sum and...

www.CodeNirvana.in

Powered by Blogger.

About

Site Links

Popular Posts

Translate

Total Pageviews