In this Python set program, we will check whether all elements in a set are even elements are not with the help of the below-given steps.
What is set?
Sets are used to store multiple items in a single variable.
The set is one of 4 built-in data types in Python used to store collections of data.
It is an unordered collection data type that is iterable, mutable and has no duplicate elements.
Elements in a set are even:
Steps to solve the program
1. Create a set using {}.
2. Add some elements in the set.
3. Create a variable count and assign its value equal to 0.
4. Use a for loop to iterate over elements in the set.
5. Use an if statement inside the loop to check whether an element is divisible by 2.
6. If yes then add 1 to the count variable.
7. Use an if-else statement to check whether the value of count variable is equal to the length of the set.
8. If yes then all elements in a set are even, else not.
9. Print the respective output.
Output :
Related Articles
Python program to check if all elements in a set are odd.
Python program to check if all elements in a set are prime.
Python program to check if a set is a proper subset of another set.
Python program to find the cartesian product of two sets.
Python program to find the power set of a set.
Python program to remove all elements from a set.