The following set is given: subjects = {'mathematics', 'biology'} Using the appropriate method add 'english' to this set. In response print subjects set to the console. Expected result: {'biology', 'mathematics', 'english'} Note: Remember that the set is an unordered data structure. You may get a different order of items than the expected result.
subjects = {'mathematics', 'biology'}
subjects.add("english")
print(subjects)