I am trying to construct a parametrized circuit in qiskit, or a parametrized QAOA, which means I need to define a list of parameters. Currently I need to construct it one by one using
theta = Parameter('θ')
Is there a more efficient way that I can create $n$ number of parameters?