53.1k views
0 votes
THIS IS PYTHON QUESTION

d = math.sqrt(math.pow(player.xcor() - goal.xcor(), 2) + math.pow(player.ycor()-goal.ycor(), 2))

here is the error message that I am getting when I run this using the math module in python: TypeError: type object argument after * must be an iterable, not int

1 Answer

5 votes

Answer:

ok

Explanation:yes

User Max Pattern
by
6.2k points