Build an rpg character last two cases

else:

   player_stat = name + "\\n"          

player_stat += "STR" + (strength \* full_dot) + ((10 - strength) \* empty_dot) + "\\n"

player_stat += "INT" + (intelligence \* full_dot) + ((10 - intelligence) \* empty_dot) + "\\n" 

player_stat += "CHA" + (charisma \* full_dot) + ((10 - charisma) \* empty_dot)

return player_stat

# Test the function

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

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.