Skip to main content

DSL A4

Data Structure Lab :


Practical A4 :

 Write a Python program that computes the net amount of a bank account based a transaction log from console input. The transaction log format is shown as following: D 100 W 200 (Withdrawal is not allowed if balance is going negative. Write functions for withdraw and deposit) D means deposit while W means withdrawal. Suppose the following input is supplied to the program: D 300, D 300 , W 200, D 100 Then, the output should be: 500


The code for above problem is as follows :

   
 #@author: Vedant  
   
 print("""       HELLO  
    WELCOME TO OUR BANK""")  
      
     
 balance=0  
   
 def deposit():  
     global balance  
       
       
     
     while True:  
         
       amount=float(input("Enter amount to be Deposited: "))   
   
       balance += amount   
       print("\n Amount Deposited:",amount)   
       
       res=input ("Do you want to Deposite more money? y or n ")  
       if res=='n':  
         print("\n Your Total Balance is ",balance)  
         break  
   
    
   
 def withdraw():  
     global balance  
     
     while True:  
   
       amount = float(input("Enter amount to be Withdrawn: "))   
   
       if balance>=amount:   
   
         balance-=amount   
         print("\n You Withdrew:", amount)   
         print("\n Your Total Balance is ",balance)  
   
       else:   
   
         print("\n Insufficient balance ")   
         
       res=input ("Do you want to withdraw more money ? y or n ")  
       if res=='n':  
         print("\n Your Total Balance is ",balance)  
         break    
 while True:  
     
   res=input ("""What do you want to do?  
           PRESS 'd' to deposit money  
           PRESS 'w' to withdraw money  
           PRESS 'e' to exit\n""")  
   if res=='d':  
     deposit()  
   elif res=='w':  
     withdraw()  
   elif res=='e':  
     break  
   else:  
     print("""SORRY!!!  
      You have given wrong input""")    

Comments

Popular posts from this blog

Circle Triangle Pattern

  Group A   Practical 3 a   Problem Statement :   a) Write C++ program to draw the following pattern. Use DDA line and Bresenham‘s circle drawing algorithm. Apply the concept of encapsulation. Check Out Code Here  ðŸ‘‡ Output :  Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊

DSL A2

  Write a Python program to store marks scored in subject “Fundamental of Data Structure” by N students in the class. Write functions to compute following:  a) The average score of class  b) Highest score and lowest score of class  c) Count of students who were absent for the test  d) Display mark with highest frequency The Code for above problem is as follows : """ @author: SPPU SE GURU """ total=int(input ("Enter total no. of students in your class ")) pre=int(input("No. of students appeared for FDS exam : ")) U=[] for i in range (total): i=i+1 U.append(i) R=[] for i in range(pre): roll=int(input("Enter Roll no. of students present for test :- ")) R.append(roll) M=[] for i in range(pre): print("Enter Roll no. ",R[i],end=" ") marks=int(input("Marks:- ")) M.append(marks) print("********** Solutions Are as fo...

DSL E29

 Data Structure Lab : Practical 29 : Problem Statement:  Queues are frequently used in computer programming, and a typical example is the creation of a job queue by an operating system. If the operating system does not use priorities, then the jobs are processed in the order they enter the system. Write C++ program for simulating job queue. Write functions to add job and delete job from queue Check Out Code Here  ðŸ‘‡ // Author : SPPU CSE GURU #include<iostream> using namespace std; class Queue{ private: int front,rear,max; public: int Q[10]; Queue() { front=0; rear=-1; max=10; } void EnQueue(); void DeQueue(); void Display(); }; void Queue::EnQueue() { int data; cout<<"Enter Job no. to Add "<<endl; cin>>data; if(rear...