add new variables based on variable name python code example
Example: how to create dynamic variable names in python
for i in range(0, 9):
globals()[f"my_variable{i}"] = f"Hello from variable number {i}!"
print(my_variable3)
# Hello from variable number 3!