Answers for "create variables dynamically python"

8

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!
Posted by: Guest on October-03-2020
-1

creating dynamic variable in python

for i in range(0, 9):
Posted by: Guest on February-25-2021

Code answers related to "create variables dynamically python"

Python Answers by Framework

Browse Popular Code Answers by Language