icecore2/python-training2019

String is a Sequence

icecore2 opened this issue · 0 comments

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(____)