Build an RPG Character

I mostly have my code working, but I can’t seem to get past the “All stats should be no less than 1” and “All stats should be no more than 4”.

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 name == "":
        return 'The character should have a name'
    if " " in name:
        return 'The character name should not contain spaces'
    
    stats = {'STR': 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:
            return 'All stats should be no  less than 1'
    
    for stat in stats.values():
        if stat > 4:
            return '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():
        character_string += f'\n{key} {full_dot*stat}{empty_dot*(10-stat)}'
    return character_string

print(create_character('ren', 4, 2, 1))

when you ask for help please post the link to the challenge

I managed to find the link.

you don’t pass the test for values less than 1 because you have an extra space in the string.

you are not passing the one for more than 4 because create_character('ren', 1, 1, 7) is saying The character should start with 7 points. Can you figure out why this one happens too early?