Write the statement to print the elements of second and fourth indices of a string array str
Answers
Answered by
3
string_arr = ["Hello!", "how", "are", "you", "doing"]
# second index
print(string_arr[1])
# fourth index
print(string_arr[3])
Similar questions