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 Pointscombo.py
Where am I going wrong? I'm not sure I understand how to return different values inside the same tuple while looping over it
# 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:
for string_item in my_string:
add_tuples[0] = (my_list[0], my_string[0])
tuples.append(add_tuples)
count += 1
#return list of created tuples
return tuples
2 Answers
Stuart McIntosh
Python Web Development Techdegree Graduate 22,874 PointsHi there, you are very close, however, a couple of suggestions
You only need one for loop. You have a counter so you can just directly access the second iterable via the count for instance:
for list_item in my_list:
tuples.append((list_item, my_string(count))
You can also remove the count by using enumerate()
for count, list_item in enumerate(my_list):
Hopefully, this is helpful
Goekalp Cicek
9,322 Pointsdef combo(list1,list2):
d={}
ind=0
l=[]
for i in list1:
d[i]=list2[ind]
ind+=1
for i in d.items():
l.append(i)
return l
Ryan Cross
5,742 PointsRyan Cross
5,742 Pointslooks like for every itteration of the first for block you will itterate all of the 2nd for block?