Computer Science, asked by Dppu3249, 11 months ago

The Metro Bank provides various types of loans such as car loans, business loans and house loans to its account holders. Write a python program to implement the following requirements: Initialize the following variables with appropriate input values:account_number, account_balance, salary, loan_type, loan_amount_expected and customer_emi_expected. The account number should be of 4 digits and its first digit should be 1. The customer should have a minimum balance of Rupees 1 Lakh in the account. If the above rules are valid, determine the eligible loan amount and the EMI that the bank can provide to its customers based on their salary and the loan type they expect to avail. The bank would provide the loan, only if the loan amount and the number of EMI’s requested by the customer is less than or equal to the loan amount and the number of EMI’s decided by the bank respectively. Display appropriate error messages for all invalid data. If all the busi

Answers

Answered by rajkushwaha521
25

Answer:

def calculate_loan(account_number,salary,account_balance,loan_type,loan_amount_expected,customer_emi_expected):

   eligible_loan_amount=0

   bank_emi_expected=0

   if account_number>999 and account_number<2000:

       if account_balance>=100000:

           if salary>25000 and loan_type=="Car":

               eligible_loan_amount=500000

               bank_emi_expected=36

               if loan_amount_expected<=eligible_loan_amount and customer_emi_expected<=bank_emi_expected:

                   print("Account number:", account_number)

                   print("The customer can avail the amount of Rs.", eligible_loan_amount)

                   print("Eligible EMIs :", bank_emi_expected)

                   print("Requested loan amount:", loan_amount_expected)

                   print("Requested EMI's:",customer_emi_expected)

               else:

                   print("The customer is not eligible for the loan")

           elif salary>50000 and loan_type=="House":

               eligible_loan_amount = 6000000

               bank_emi_expected = 60

               if loan_amount_expected<=eligible_loan_amount and customer_emi_expected<=bank_emi_expected:

                   print("Account number:", account_number)

                   print("The customer can avail the amount of Rs.", eligible_loan_amount)

                   print("Eligible EMIs :", bank_emi_expected)

                   print("Requested loan amount:", loan_amount_expected)

                   print("Requested EMI's:", customer_emi_expected)

               else:

                   print("The customer is not eligible for the loan")

           elif salary>75000 and loan_type=="Business":

               eligible_loan_amount = 7500000

               bank_emi_expected = 84

               if loan_amount_expected<=eligible_loan_amount and customer_emi_expected<=bank_emi_expected:

                   print("Account number:", account_number)

                   print("The customer can avail the amount of Rs.", eligible_loan_amount)

                   print("Eligible EMIs :", bank_emi_expected)

                   print("Requested loan amount:", loan_amount_expected)

                   print("Requested EMI's:", customer_emi_expected)

               else:

                   print("The customer is not eligible for the loan")

           else:

               print("Invalid loan type or salary")

       else:

           print("Insufficient account balance")

   else:

       print("Invalid account number")

#Test your code for different values and observe the results

calculate_loan(1001,40000,250000,"Car",300000,30)

Explanation:

Similar questions