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 trialKoray Demirci
12,746 PointsIt says "Communication problem" after submission.
Hello. My submit shows the error below:
"Oh no! There was a communication problem."
# combo([1, 2, 3], 'abc')
# Output:
# [(1, 'a'), (2, 'b'), (3, 'c')]
# If you use .append(), you'll want to pass it a tuple of new values.
def combo(s1, s2):
t = []
for i in range(len(s1)):
t.append((s1[i], s2[i]))
return t
3 Answers
Alexander Davison
65,469 PointsActually, your code isn't related to this "Oh no!" problem. Your code is actually 100% fine and should pass the challenge (at least I think). Try refreshing the page :)
Wilfredo Lopez
3,693 PointsGetting the same issue in my JavaScript lessons. Just got an e-mail from support saying that the issue relies on the DDoS attack that happened today and treehouse was affected too.
Koray Demirci
12,746 PointsThank you for the comments. I am gonna retry later.