Saturday 12 November 2016

While loop in Python

count=1
while count <= 5:
    print count

While loop in Python

count=1
while count <= 5:
    print count

Switch Case in Python

Python does not support switch case direct but you can implement it by using else-if as in following manner

print "Enter day of the week  number>> "
a=int(raw_input())

if(a==1):
    print("Mon")
elif(a==2):
    print("Tue")
elif(a==3):
    print("Wed")
elif(a==4):
    print("Thu")
elif(a==5):

Switch Case in Python

Python does not support switch case direct but you can implement it by using else-if as in following manner

print "Enter day of the week  number>> "
a=int(raw_input())

if(a==1):
    print("Mon")
elif(a==2):
    print("Tue")
elif(a==3):
    print("Wed")
elif(a==4):
    print("Thu")
elif(a==5):