which of the following statements is used to create an empty set in python?
To create an empty setin Python, the following code below is used:
set1=set()
So we created a variable, called set1,andset it equal to set()
This creates an empty setin Python.