.. _too-many-star-expressions:

too-many-star-expressions / E0112
=================================

**Message emitted:**

More than one starred expression in assignment

**Description:**

*Emitted when there are more than one starred expressions (`*x`) in an assignment. This is a SyntaxError.*

**Problematic code:**

.. literalinclude:: /data/messages/t/too-many-star-expressions/bad.py
   :language: python

**Correct code:**

.. literalinclude:: /data/messages/t/too-many-star-expressions/good.py
   :language: python



Created by the `basic <https://github.com/PyCQA/pylint/blob/main/pylint/checkers/base/basic_error_checker.py>`__ checker.