Вероятно, вы захотите создать список . Списки полезны, когда у вас есть большое количество похожих переменных, которые становится утомительно называть и присваивать. Я включил краткое введение в списки в Python, но вы, вероятно, можете найти лучшие учебные пособия в Google.
investors = [ # Here we create a list of Investors;
Investor("John", 150), # all of these Investors between the
Investor("Paul", 50), # [brackets] will end up in the list.
Investor("Mary", 78)
]
# If we're interested in the 2nd investor in the list, we can access
# it by indexing:
variable = investors[1] # Note indexing starts from 0.
# If we want to add another element to the list,
# we can call the list's append() method
investors.append(Investor("Elizabeth", 453))
# We can access each investor in the list with a for-loop
for investor in investors:
print(investor.name + " says hi!")
# If we want to process all of the investors in the list, we can use
# Python's list comprehensions:
investments = [ investor.investment for investor in investors ]
Если вы хотите получить лучший обзор того, что такое возможно со списками, я бы отослал вас к W3Schools 'Python Tutorial , в котором есть примеры, которые вы можете запустить в своем браузере.