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

Author: admin

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