Build an RPG Character - Build an RPG Character

Welcome to the forum @MrEddy!

You are hard coding the return string based on an expected function call.

That is not solving this problem in the general case. Imagine if you were given a different function call like print(create_character('hello',3,2,2)). Would your code be able to handle that?

To find out more about what hard-coding is or about why it is not suitable for solving coding questions, please read this post: Hard-coding For Beginners

Let us know if you have a question about how to make your code more flexible.

Happy coding!