If str = “welcome”, why does Python report error when we write str[0] = ‘W’ ?
Answers
Answered by
1
Answer:
Because String is immutable in python
Similar questions