Skip to main content

Posts

atari guwahati

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" >     < link rel = "stylesheet" href = "css/bootstrap.min.css" >     < link rel = "stylesheet" href = "css/style.css" >     < title > Atari Guwahati Website </ title > </ head > < body > < div class = "container" >       < nav class = "navbar navbar-expand-lg bg-body-tertiary" >         < div class = "container-fluid offset-md-2" >           <!-- <a class="navbar-brand" h...
Recent posts

Online libary in python

  class Libary :     def __init__ ( self , list , name ):         self . booklists = list         self . name = name         self . lendDict ={}     def displayBooks ( self ):         print ( f "we have following books in the libary: { self . name } " )         for book in self . booklists :             print ( book )     def lendbook ( self , user , book ):         if book not in self . lendDict . keys ():             self . lendDict . update ({ book : user })             print ( "Lender-Book database has been updated. you can take the book now" )         else :             print ( f "book is already being used by { self . lendDict [ book ] } " )     def addbook ( self , boo...