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 trialBenjamin Guyton
6,858 Pointstuplessss
I understand what the problem is asking for, and I feel like I'm heading in the right direction with the code I've written, but I'm stuck at what to do next. Any helpful advice available?
# combo([1, 2, 3], 'abc')
# Output:
# [(1, 'a'), (2, 'b'), (3, 'c')]
def combo(my_list, my_string):
# create a list that will have tuples appended to it
tuples = []
count = 0
# create tuples containing the corresponding index to my_list and my_string
# loop through both arguments of combo()
for list_item in my_list and string_item in my_string:
return new_entry = (my_list[count], my_string[count])
count += 1
#return list of created tuples
return tuples.append(new_entry)
1 Answer
Steven Parker
231,236 PointsHere's a few hints:
- a "for" loop can only use one iterable
- a "for" loop with a range could generate index numbers
- you may want to append to the new list inside the loop
- you will not want to return until the loop is finished