Question: 5 4 1 0 1 6 . 3 9 0 0 8 8 0 . q x 3 2 q y ? Jump to level

541016.3900880.qx32qy?
Jump to level 1
List names_list contains three strings read from input. Create a set named unique_names containing the unique strings in names_list.
Click here for example
Ex: If the input is:
Pat
Ron
Ron
then the output is:
['Pat', 'Ron']
Note: Because sets are unordered, the set is printed using the sorted() function here for comparison.
names_list input (), input (), input ()]
unique_names = sorted(names_list)
print(sorted(unique_names))
1
2
3
4
 541016.3900880.qx32qy? Jump to level 1 List names_list contains three strings read

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!