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