Skip to main content

Posts

python Contact managrment create using python programming

hello wellcome guy's  Again to come new project so guys this project is comtact management  create using python so guys last time we will see that how to create    Library mangement using python so guys today is discuss  contact managrment simple python programming  Let's star:::::::- ••••••••••••••••••••••••••••••••••••••• ••••••••••••••••••••••••••••••••••• print("•••••WELCOME TO CANTACT•••••\n") name = [] number = [] def contact(): lis = 1 list = int(input("how many save number  of line :")) for i in range(0,list): for j in range(0,lis): n = input(f"{lis}.Name:") k = int(input(f"{lis}.Phone number:")) number.append(k) name.append(n) print("\n••••••••••••••••••\n") for q,a in zip(name,number): print("\n{0}:: {1}.\n".format(q,a)) contact()# this is function calling def choice(): while True: print("•••••••Choose Your Choice•••••\n") print("1.Add a new contact") p...
Recent posts

python Library management project using python

Hello welcome guys guy's aaj  ham ek library management system programming karne wale hai or mai apko ye code de dunga  to apko tension lene ki jarurat nhi hai  so guy's mai start karne wala hun or aap es code ko Android phone me bhi run kar sakte hai es code ko Android me run karne ke liye ye rhe IDE  pydroid3 - IDE for python 3 install karke run kijiye so ab code karna start karte hai Library Management name = [] list = [] def booksList(): try: lis = 1 list = int(input("how many add the book line :")) for i in range(0,list): for j in range(0,lis): n = input(f"{i}.book Name:") name.append(n) except(ValueError): # Print not found message print("you are wrong input please Try again...... ") #print(name) def book(): while(True): print("\n====Choose the option====") print("1.display all book::") print("2.Request the book::") print("3.return a book::") prin...