Computer Science, asked by patrapratik778, 2 months ago

Write the statement to print the elements of second and fourth indices of a string array str​

Answers

Answered by jai696
3

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

string_arr = ["Hello!", "how", "are", "you", "doing"]

# second index

print(string_arr[1])

# fourth index

print(string_arr[3])

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions