pythonsolve
Question 3 Define a method for the Bank class that returns the total assets in the bank (the sum of all account balances). (05 Marks)
Question 4 Two playing cards can be compared by rank. For example, an ace is less than a 2. When c1 and c2 are cards, c1.rank < c2.rank expresses this relationship. Explain how a method could be added to the Card class to simplify this expression to c1 < c2. (05 Marks)
Question 9
Write a script named copyfile.py. This script should prompt the user for the names of two text files. The contents of the first file should be input and written to the second file.