Build an RPG Character - Build an RPG Character

Tell us what’s happening:

Well, this works but is not the solution, so i need help…

Your code so far

full_dot = '●'
empty_dot = '○'

def create_character(character_name, STR,INT,CHA):

    if not isinstance(character_name, str):
        return "The character name should be a string"

    if character_name == "":
        return"The character should have a name"

    if len(character_name) > 10 :
        return"The character name is too long"

    if character_name.count(" "):
        return"The character name should not contain spaces"

    if not isinstance(STR,int) or not isinstance(INT, int) or not isinstance(CHA, int):
        return "All stats hould be integers"

    if STR < 1 or INT < 1 or CHA < 1:
        return "all stats should be no less than 1."

    if STR > 4 or INT > 4 or CHA > 4:

        return "All stats should be no more than 4."

    if STR+INT+CHA > 7:

        return "The character should start with 7 points"

    return character_name,STR,INT,CHA

ola = create_character("David",1,2,3)

x = ""
z = ("STR","INT", "CHAR")
b = 1
c = 0

while b !=4:
    x = ""
    c = ola[b]
    times = 10 - c


    while times > 0:
        if c > 0:
            x += "●"
            c-=1
            
        if times > 0 and c == 0:
            x += "○"
            times-=1

    b+=1
    print(z[b-2:b-1], x)




Your browser information:

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

Challenge Information:

Build an RPG Character - Build an RPG Character

  1. The function should accept, in order, a character name followed by three stats: strength, intelligence, and charisma.

Do your parameters for create_character meet this requirement?

this is all outside the function, so it’s not being used to create the function output

the requirements are for your function output to do a certain thing