[] = empty list
[]
list
() = empty tuple
()
tuple
{} = empty dict
{}
dict
Is there a similar notation for an empty set? Or do I have to write set()?
set
set()
No, there's no literal syntax for the empty set. You have to write set().