what is the correct python program script for
Attachments:
Answers
Answered by
3
Answer:
str = "Mississippi"
for i in range (len (str)) :
if str[ i ] == 'i' :
print (i)
Similar questions