Find the code that produces the correct output.
None of the bits of code deliver the anser. The closest is A, which I can fix with one change:
print(letters[i], letters[i+1])
-> print(letters[i] + letters[i+1])
Hi Steven, I have updated Code C. That code produces the given output.
A
None of the bits of code deliver the anser. The closest is A, which I can fix with one change:
print(letters[i], letters[i+1])
-> print(letters[i] + letters[i+1])
Hi Steven, I have updated Code C. That code produces the given output.
A