Question: What is the error in the following Python code? animal = Tiger animal[0] = 'L' animal is an invalid name changing a part of string
What is the error in the following Python code?
animal = "Tiger"
animal[0] = 'L'
animal is an invalid name
changing a part of string is not allowed
there is no error
a string cannot be indexed
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
