Build an RPG Character - Build an RPG Character

Tell us what’s happening:

I’m not able to pass tests 11 and 12.

What’s wrong with my code?

Your code so far

full_dot = '●'
empty_dot = '○'

def create_character(character_name, strength, intelligence, charisma):

    if not isinstance(character_name, str):
        return "The character name should be a string"
    
    elif character_name == "":
        return "The character should have a name"
    
    elif len(character_name) > 10:
        return "The character name is too long"

    elif character_name.count(" ") > 0:
        return "The character name should not contain spaces"

    stats = [strength, intelligence, charisma]

    if not all (isinstance(stat, int) for stat in stats):
        return "All stats should be integers"

    elif any(stat < 1 for stat in stats):
        return "All stats should be no less than 1"

    elif any(stat > 4 for stat in stats):
        return "All stats should be no more than 4"

    elif sum(stats) != 7:
        return "The character should start with 7 points"

def format_line(label, value):
    full_dots = '●' * value
    empty_dots = '○' * (10 - value)
    return f"{label} {full_dots}{empty_dots}"

    character_sheet = (
        f"{character_name/n}"
        f"{format_line ('STR', strength)/n}"
        f"{format_line ('INT', intelligence)/n}"
        f"{format_line ('CHA', charisma)/n}"
        )
    return character_sheet

create_character("ren", 4, 2, 1)

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36

Challenge Information:

Build an RPG Character - Build an RPG Character

add this below your code so you can compare what your function is doing vs what it should do

print(repr(create_character("ren", 4, 2, 1)))
print(repr('ren\nSTR ●●●●○○○○○○\nINT ●●○○○○○○○○\nCHA ●○○○○○○○○○'))

hint: where are you using format_line?