Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

thebong
10,899 PointsError couldn't find move
Can't figure out where I'm going wrong. Help would be greatly appreciated. Have I made some logical mistake?
# EXAMPLES:
# move((1, 1, 10), (-1, 0)) => (0, 1, 10)
# move((0, 1, 10), (-1, 0)) => (0, 1, 5)
# move((0, 9, 5), (0, 1)) => (0, 9, 0)
def move(player, direction):
x, y, hp = player
x1, y1 = direction
if (x+x1 < 0) or (y+y1 < 0) or (x+x1 > 9) or (y+y1 > 9):
return x, y, hp-5
else:
return x+x1, y+y2, hp
1 Answer

Steven Tagawa
Python Development Techdegree Graduate 14,426 PointsIt's just a typo. Your else return line says y+y2, not y+y1.
thebong
10,899 Pointsthebong
10,899 PointsThanks so much! Feels good to get it done.