BUILD AN RPG CHARACTER GENERATOR

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 not name:
        return 'The character should have a name'
    if len(name) > 10:
        return 'The character name is too long'
    if ' ' in name:
        return 'The character name should not contain spaces'

    #stats validation code

    if not isinstance(strength, int) or not isinstance(intelligence, int) or not isinstance(charisma, int):
        return('All stats should be integers')
    if strength < 1 or intelligence < 1 or charisma < 1:
        return 'All stats should be no less than 1'
    if strength > 4 or intelligence > 4 or charisma > 4:
        return 'All stats should be no more than 4'
    if strength + intelligence + charisma != 7:
        return 'The character should start with 7 points'
    else:
        STR = 'Str'+" " + full_dot*strength + empty_dot*(10 - strength) 
        INT = 'INT'+' ' + full_dot*intelligence + empty_dot*(10 - intelligence)
        CHA = 'CHA'+ ' ' + full_dot*charisma + empty_dot*(10 - charisma)
        data = name +'\n'+ STR +'\n'+ INT +'\n'+ CHA
        return data
        
print(create_character('ren', 4, 2, 1))

is there anything wrong with my code? I tried everything i can but i am stark here

  • 18. create_character('ren', 4, 2, 1) should return ren\nSTR ●●●●○○○○○○\nINT ●●○○○○○○○○\nCHA ●○○○○○○○○○.

  • :19. When create_character is called with valid values it should output the character stats as required.

Hi there,

Str ●●●●○○○○○○

Does this line match the instructions? Check capitalization.

Happy coding!

THANK YOU IT WAS ABLE TO WORK OUT AFTER MODIFYING IT