Skip to content
Advertisement

Python TypeError: ‘function’ object cannot be interpreted as an integer

I have the following code:

JavaScript

When the code gets to player_name() at the bottom I get this error.

TypeError: ‘function’ object cannot be interpreted as an integer

How do I fix this?

Advertisement

Answer

Did you mean to pass various parameters around?

JavaScript

What happens in the line: player_name(people(), players) is that first people() is called which asks the user for the number of players and that number is returned and used as the first parameter to player_name().

The second parameter is just the dict players which you created. This allows the possibility of moving def player_name() into another module which might not already know about players.

Then player_name() is called and asks for player’s names as you have written.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement