Question: Create variable unique _ animals as an empty set so that three strings can be read from input and added to unique _ animals. Click

Create variable unique_animals as an empty set so that three strings can be read from input and added to unique_animals.
Click here for example
Note: Because sets are unordered, the set is printed using the sorted() function here for comparison.
1
I'' Your code goes here '''
animal1= input()
animal2= input()
animal3= input()
unique_animals.add(animal1)
unique_animals.add(animal2)
unique_animals.add(animal3)
print(sorted(unique_animals))
 Create variable unique_animals as an empty set so that three strings

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!