Build an RPG character - Build an RPG Character

Tell us what’s happening:

I just can’t figure out how to solve test 9 and 10. I’ve checked other people’s posts but none of them worked. When I use similar solutions to other people’s, it doesnt work at all.

My code so far

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 ' ' in name:
        return 'The character name should not contain spaces'

    stats = {'STA':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'
    

My browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0

Challenge Information:

Build an RPG character - Build an RPG Character

Hi @CoolSkeleton95

If all the checks pass, you need to return the string mentioned in test 9.

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

Happy coding

1 Like

it works i will now figure out how to do test 10

1 Like