TORONTO KIDS COMPUTER CLUB | Aurora Saturday 13:00 Python Practice 01.09.
18910
post-template-default,single,single-post,postid-18910,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

Aurora Saturday 13:00 Python Practice 01.09.

13 Jan Aurora Saturday 13:00 Python Practice 01.09.

Question:
Define a class called Lunch. Its __init__() method should have two arguments: self and menu. Where menu is a string. Add a method called menu_price. It will involve a if statement:

  • – if “menu 1” print(“Your choice:”, menu, “Price 12.00”)
  • – if “menu 2” print(“Your choice:”, menu, “Price 13.40”)
  • – else print(“Error in menu”)

To check if it works define: paul = Lunch(“menu 1”) and call paul.menu_price().

No Comments

Sorry, the comment form is closed at this time.