Build an RPG Character - Build an RPG Character

Tell us what’s happening:

My code is not passing test 10 and 11. I followed the instruction to the letter and I have rewritten it over and over again, still I have not been able to proceed. Despite this, I got the expected output on the terminal. Please help.

Your code so far

full_dot = '●'
empty_dot = '○'

def create_character (name, STR, INT, CHA):
    if not isinstance (name, str):
        return 'The character name should be a string' 
    if name.strip()=='':
        return 'The character should have a name'
    if ' ' in name :
        return 'The character name should not contain spaces'

    if len(name) > 10:
        return 'The character name is too long'
    if not isinstance (STR, int) or not isinstance (INT, int) or not isinstance (CHA, int):
        return 'All stats should 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 (
        name + '\n'
        + 'STR' + ' ' + full_dot * STR + empty_dot * (10-STR) + '\n'
    + 'INT' + ' ' + full_dot * INT + empty_dot * (10-INT) + '\n'
    +'CHA' + ' ' + full_dot * CHA + empty_dot * (10-CHA) + '\n'
    )

print(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/144.0.0.0 Safari/537.36

Challenge Information:

Build an RPG Character - Build an RPG Character

If you print(repr(create_character('ren', 4, 2, 1))) does your string look like this:
ren\nSTR ●●●●○○○○○○\nINT ●●○○○○○○○○\nCHA ●○○○○○○○○○

Yes, exactly the same.

Please post what you see printed.

‘ren\nSTR ●●●●○○○○○○\nINT ●●○○○○○○○○\nCHA ●○○○○○○○○○\n’

and how is that exactly the same as this:

look closely

I have seen where the problem is. Thank you for your time and effort.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.