d = {}
for i in range(len(Active_Member)):
d["Member_{0}".format(i)] = Active_Member[i]
print(d)
for i in range(len(d)):
(Member_[d]) = (Member_[i](4))
Active_Member is already defined and the dictionary has been filled with around 13 values.
I am trying to make each value in the dictionary get put into its own variable but the amount of values that will be in the dictionary can be subject to change and therefore I cannot hard code this.
I am quite new to Python and probably a bit over me head however any help would be appreciated.