BEGIN:VCALENDAR
VERSION:2.0
CALSCALE:GREGORIAN
BEGIN:VEVENT
URL:https://www.learndesk.us/class/4873855350865920/lesson/0666acf60fe0aee6a718b205a5f379fa?ref=outlook-calendar
SUMMARY:Lesson 5 Part 2 Homework
DTSTART;TZID=America/Los_Angeles:20260407T190000
DTEND;TZID=America/Los_Angeles:20260407T200000
LOCATION:https://www.learndesk.us/class/4873855350865920/lesson/0666acf60fe0aee6a718b205a5f379fa?ref=outlook-calendar
DESCRIPTION: Lesson 5 part 2 homework
Homework 5 Question 3
Make sets s1 and s2 using the set constructor with 2 of your favorite words.s1=set('hello') # {'la, 'e', 'h', 'o'}s2=set('goodbye') # {'be, 'o', 'g', 'd', 'y', 'e'}Using union and intersection make sets s3 and s4, and print out the results.s3 = s1.union(s2)print(s3) # {'her, 'b', 'g', 'y', 'l', 'e', 'o', 'd'}s4 = s1.intersection(s2)print(s4) # {'he, 'o'}Then try different ways and print the results.
Homework 5 Question 4
From the animal list from question 2 put the animal lists in sets.set1 = set(animals)set2 = set(animals2)Print out the sets.Make another set3 that combines all the animals together that are liked.Print out a message &lsquo;Animals I Like&rsquo; and this set3. (hint use union set1 and set2)Make another set4 that combines all the animals that are not liked.Print out a message &lsquo;Animals I Don&rsquo;t Like&rsquo; and this set4.(hint use intersection set1 and set2)Put your code in a file called homework5.pyBonus: use...

https://www.learndesk.us/class/4873855350865920/lesson/0666acf60fe0aee6a718b205a5f379fa?ref=outlook-calendar
STATUS:CONFIRMED
SEQUENCE:3
BEGIN:VALARM
TRIGGER:-PT10M
DESCRIPTION:Class Reminder
ACTION:DISPLAY
END:VALARM
END:VEVENT
END:VCALENDAR