SyntaxFix
Write A Post
Hire A Developer
Questions
When you assign a variable to empty curly braces {} eg: new_set = {}, it becomes a dictionary. To create an empty set, assign the variable to a 'set()' ie: new_set = set()
new_set = {}
new_set = set()