TORONTO KIDS COMPUTER CLUB | admin
1
archive,paged,author,author-admin,author-1,paged-169,author-paged-169,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Author: admin

15 Jan PMCA Saturday 18:30 Python Homework 20.01.11.

Question 1: Using split and join function of the list to change string “green,red,yellow,blue,” into string: “green light* red light* yellow light* blue light* “ Hint: >>> vegetables = “carrots, potatoes, onions, leeks, celery” >>> vegetables = vegetables.split(“, “) >>> vegetables [‘carrots’, ‘potatoes’, ‘onions’, ‘leeks’, ‘celery’] >>> fruits = [‘avocados’, ‘bananas’, ‘oranges’, ‘grapes’, ‘mangoes’] >>>“, “.join(fruit) >>> ‘avocados, bananas, oranges, grapes, mangoes’ Question 2: Create a list called...

Read More

14 Jan PMCA Sunday 10:00 Practice -33.

Question: Create Card class so it can complete the following tasks: Card() – You can initial the card with random value (Assume the smallest card value is ‘2’, then followed by ‘3’, ‘4’, ‘5’, ‘6’, ‘7’, ‘8’, ‘9’, ’10’, ‘J’, ‘Q’, ‘K’, ‘A’) and according rank...

Read More