Answers for "python dynamically name variables"

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
4

how to create dynamic variable names in python

for x in range(0, 9):
    globals()['string%s' % x] = 'Hello'
# string0 = 'Hello', string1 = 'Hello' ... string8 = 'Hello'
Posted by: Guest on September-03-2020

Code answers related to "python dynamically name variables"

Python Answers by Framework

Browse Popular Code Answers by Language