Posts

nested list code (html)

Image
 Code-  < html >      < head >          < title >             internet servers and usage          </ title >      </ head >     < body   style = " background-color: yellow; " >          < br >                             < center >            < h1 >< p   style = " color:red; "   >  WHAT ARE INTERNET SERVERS </ p >   </ h1 >                 < img   src = "internets...

HCF FINDER USING PYTHON

Code- def   hcf ( a  ,  b ):      if (b ==  0 ):              return  a      else :              return  hcf(b, a % b) a =  100 b =  200 print (hcf( 100  ,  200 )) Code No 2-   # defining a function to calculate HCF   def   calculate_hcf ( x ,  y ):        # selecting the smaller number        if  x > y:           smaller = y        else :           smaller = x        for  i  in   range ( 1 ,smaller ...