Suppose we have a function
def analyse(n):
for c in cluster_{n}:
do something
For example if we run analyse(1)
I want it to run like
for c in cluster_1 :
do something
where cluster_1
is a global list already declared.
How can I do that?