Computer Science, asked by yashshirse2, 15 hours ago

Python program for Registration form for a Customer of a Bank with card details.

Answers

Answered by 06anki004
0

Answer:

mark as BRAINLEIST please

Explanation:

class Account:

def_init_(self):

self. balance=0.

print('Your Account is Created. ')

def deposit(self):

amount=int(input('Enter the amount to deposit:'))

self. balance+=amount.

print('Your New Balance =%d' %self. balance)

Similar questions