I'm making class for people and their names. I want to make specific name for each one like:
obj0, obj1, obj2... + obji
im trying to do this in iteration. Which sign could I use to connect 'obj' and 'i'?
for i in range(100):
name=input('Your name:')
obji=Person(name)