@Rasp like a class?
class Character:def __init__(self, name, desc)
self.name = name
self.desc = desc
my_character = Character('Todd', 'This is Todd')
print(my_character.name) # Todd
there's obviously a lot more you can do with classes (and there are shortcuts for classes that only do stuff like this) but this is kind of the most barebones use case