SE Computer Engineering practical 3 solution
SE Computer Engineering Practical 3 solution Question: 1. Write a Python program that computes the net amount of a bank account based on 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) …