✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the output of the following program?
def main(): s1 = set([1, 2, 3, 4, 5]) s2 = set([4, 5, 6, 7, 8]) print(s2 - s1)main()