String is a Sequence
icecore2 opened this issue · 0 comments
icecore2 commented
Simple string is a simple sequence. The following code should print out to the screen the letters that compose the word “hello”. Each letter should be printed in a separated line. You should complete the missing code.
str = "hello"
print(str[0])
print(____)
print(____)
print(____)
print(____)