Write a Python function that does the following:
1. Its name is differences
2. It takes two sets as arguments: set_1 and set_2
3. It calculates and returns the number of elements that are different (not in common) between the two parameter sets
4. It returns an integer with the number of different elements
5. Don't use any built in commands like .symmetric_difference , only use things like for loops and if statements



Answer :

Other Questions