Posts

Showing posts from November, 2020

Anagram Program

Image
  Type1: T1=( input ( "Enter the String1: " )).lower() T2=( input ( "Enter the String2: " )).lower()   #ASCII for  i  in  T1:      if  i  in  T2:          print ( "Letter" ,i, "Present" )      else :          print ( "Not an Anagram" ) Output: Type2: T1=( input ( "Enter the String1: " )).lower() T2=( input ( "Enter the String2: " )).lower()   #ASCII #Sorted a Character        if   sorted (T1)== sorted (T2):      print ( sorted (T1))         #List     T= sorted (T1)      print ( "|" .join(T))        print ( "The words are Anagram" ) else :   ...

Guessing the Number Game

Image
#Guess the Number import  random print ( "Welcome!!! Let's Play Guess the Number" ) r=random.randint( 1 , 6 ) for  i  in   range ( 3 ):      print ( "This is your Turn:" ,i+ 1 )     choice=int( input ( "Guess the Number: " ))      if  choice==r:          print ( "Hurray!! You Won!" )          break      else :          print ( "You Lose! Try Again!" )          continue Output: If you have any doubts, feel free to post it in comment Section.

Harrypotter Quiz Program

  def   intr ():      print ( "------------------------------------------" )      print ( "   Being A Potter head....." )      print ( "------------------------------------------" )      print ( "Hello Guys!!!" )      print ( "Lets Start Our journey Into the Magical World Of Hogwarts..." )      print ( "------------------------------------------" ) def   quiz ():     Score= 0      print ( "1.Which sport is practised in Hogwarts?" )      print ()     ques1opt=[ "1.Football" , "2.Cricket" , "3.Quidditch" , "4.Hockey" ]      for  i  in  ques1opt:              print (i)     ans1=int( input ( "...

Electricity Bill Calculation

Image
Per Unit Rate in TamilNadu 2020: For 0 to 100 units, the per unit is Zero For 0 to 200 units, for the First 100 unit the per unit cost is Zero  and           the next 100 units, the consumer shall pay Rs. 1.5 per unit. For 0 to 500 units, the consumer shall pay Rs. 0 for the first 100 units, for the next 100 units the consumer shall pay Rs. 2 per unit, for the next 300 units the unit cost is Rs.3 per unit For Above 500 units, the per unit cost is as shown in the table. Program Code: d ef   des ():      print ( "..........................................." )      print ( '\t'"ELECTRICITY BILL CALCULATION" )      print ( "..........................................." ) def   calc ():      while( 1 ):           print ( '\t'"Consumer Details" )          print ( '\t'"~~~~~~~~~~~~~~~~" )    ...

Find the final amount after Discount

Image
cart=[ '1.Girls Night wear' , '2.Women Night Wear' , '3.Girls casuals' , '4.Women Kurtis' , '5.Girls Party Wear' , '6.Women Sarees' ,            '7.Boys Night Wear' , '8.Men Night Wear' , '9.Boys Everyday Wear' ,           '10.Men Everyday Wear' , '11.Boys Party Wear' , '12.Men Party Wear' ,           '13.Kids Uniforms' ] def   dress ():      print ( "******************" )      print ( "Textiles in the Shop" )      print ( "******************" )      for  i  in  cart:          print (i) def   shopping ():     a= 0     while( 1 ):          print ( "********...

Simple Arithmetic Calculator - User Defined Function

Image
Type 1: #Function Definition def   add ():      print ( "Addition:" )     a=int( input ( "Enter A Value: " ))     b=int( input ( "Enter B Value: " ))     c=a+b     return(c) sum=add() #Function Call print ( "Addition: " ,sum) def   diff ():      print ( '\n'"Subtraction:" )     a=int( input ( "Enter A Value: " ))     b=int( input ( "Enter B Value: " ))     c=a-b     return(c) sub=diff() print ( "Subtract: " ,sub) def   mul ():      print ( '\n'"Multiplication:" )     a=int( input ( "Enter A Value: " ))     b=int( input ( "Enter B Value: " ))     c=a*b     return(...