>>> x=(,) File "<stdin>", line 1 x=(,) ^ SyntaxError: invalid syntax
> Empty tuples are constructed by an empty pair of parentheses;
And it works fine
>>> x = () >>> x ()