Create a food ordering website Hey guys today in this blog we have created a food ordering website it works to a great extent and the order now button also works. Like, Share, and Subscribe. Source Codes 👇 https://drive.google.com/folderview?i... NOTE: in the source code I have provided you with the drive link of text files open these files In Notepad and copy the codes and paste them into your VS Code.
Make an ATM Machine in Python Hello viewers, today in this blog we will see how you can make an ATM Machine with the help of python. Copy the source codes from below. Python File: main.py import time print("Welcome to the ATM Machine Created By Naman Kalyan") password = 1234 #taking atm pin from user pin = int(input("Enter your atm pin ")) #user account balance balance = 5000 #checking pin is valid or not if pin == password: #loop will run user get free while True: #Showing info to user print(""" 1 == Balance 2 == Withdraw Balance 3 == Deposit Balance 4 == Exit """ ) try: #taking an option from user option = int(input("Please enter your choice ")) except: print("Please enter valid option ") #for option 1 if option == 1:...
Comments
Post a Comment