TORONTO KIDS COMPUTER CLUB | Saturday 13:00 Python Practice – 22.11.19.
21423
post-template-default,single,single-post,postid-21423,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Saturday 13:00 Python Practice – 22.11.19.

23 Nov Saturday 13:00 Python Practice – 22.11.19.

Question 1:

Make a class definition for a  BankAccount. It should have attributes for :

– its name (a string),
– account number (a string or integer),
– and balance (a float).

It should have methods to:

– make deposits with displaying the balance,
– and make withdrawals with displaying the balance.


Hint:


Question 2:
Create a Tank class which have the attributes of:

  • model
  • direction(use ‘up’, ‘down’, ‘left’ or ‘right’)
  • x position and
  • y position

The class also have the following method:

  • move () method can change the x or y position by 10 base on the tank’s direction. (‘up’ and ‘down’ can change y position while ‘left’ and ‘right’ can change x position)
  • Using __init__() to Initial the tank to make sure it start from x position of 0, y position of 0
  • __str__() to return a string information of the tank, so you could print the tank object

You need write main program to create tank object from Tank class, you need to use the method of move and use print() to print out the tank’s current x, y position and its direction after each move.

No Comments

Sorry, the comment form is closed at this time.