TORONTO KIDS COMPUTER CLUB | Uncategorized
1
archive,paged,category,category-uncategorized,category-1,paged-70,category-paged-70,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Uncategorized

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

09 Jan PMCA Saturday 18:30 Python Homework 20.01.04.

Question 1: We have a list of following: zoo = [‘monkeys’, ‘tigers’, ‘pandas’, ‘penguins’, ‘giraffes’, ‘hippos’, ‘bears’] how to retrieve a slice of list zoo, so you can get the following result? [‘monkeys’, ‘pandas’, ‘giraffes’, ‘bears’] Question 2: from the same list of zoo in the question 1, how to retrieve a slice...

Read More

03 Jan TCMS 18:30 Python Homework 20.01.02.

Question 1. Write a program to ask how many people. If there are more than 8 people, print message "No available seats", otherwise print message "Seats are available" Sample input 1: How many people: 10 Sample output 1: No available seats Sample input 2: How many people: 6 Sample output 2: Seats are available Question...

Read More