how to access a value in string str = 'hello' str[0] what is the answer
Answers
Answered by
0
Answer:
'h'
Explanation:
str[0] will fetch the 'h' from "Hello"
Similar questions