full_dot = ‘●’
empty_dot = ‘○’
def create_character(name, strength, intelligence, charisma):
if not isinstance(name, str):
return "The character name should be a string"
if len(name)>=10:
return "The character name is too long"
if ' ' in name:
return "The character name should not contain spaces"
stats = {'ST': strength, 'INT': intelligence, 'CHA': charisma}
for stat in stats.values():
if not isinstance(stat, int):
return 'All stats should be integers'
for stat in stats.values():
if stat < 1:
'All stats should be no less than 1'
for stat in stats.values():
if stat > 4:
'All stats should be no more than 4'
if sum(stats.values()) != 7:
return 'The character should start with 7 points'
character_string = name
for key, stat in stats.items():
return character_string
print(create_character('ren', 2, 4, 1))

