Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialthebong
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,438 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.