TORONTO KIDS COMPUTER CLUB | Blog
1815
paged,page-template,page-template-blog-large-image,page-template-blog-large-image-php,page,page-id-1815,paged-263,page-paged-263,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Blog

28 Apr Aurora Saturday 16:30 Python Homework 20.04.25.

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