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.

D Anthony
6,045 PointsNot sure why this code challenge does not work?
Hello fellow student developers,
So I am having an issue with this code challenge. I've been at it for 2 days and I finally figured out some code that worked in the terminal running Python, and it produced the same result as the desired output in this challenge. However, the code challenge does not accept the code as valid and I receive the Bummer: Try again! message. So I am not sure as to why this code will not be accepted given that it produces the same output. Any advice would be much appreciated!! Thank you.
# combo([1, 2, 3], 'abc')
# Output:
# [(1, 'a'), (2, 'b'), (3, 'c')]
def combo(iterable1, iterable2):
list_1 = iterable1
list_2 = iterable2
new_list = []
for counter, x in enumerate(list_1):
new_tuple = (x, list_2[counter])
new_list.append(new_tuple)
return(new_list)
2 Answers

Trevor J
Python Web Development Techdegree Student 2,083 PointsNot sure, I copied your code in and it passed. Maybe click the retry button and past your code in and try again.

D Anthony
6,045 PointsThanks Trevor! I had to copy, paste and retry several times but it just went through. Strange but it worked. Thanks again.