QUIZ

Python strings quiz

Which code gives last 3 characters of a given string ?





Strings in python are mutable objects . Is this statement True or False?



What type of error will below code give?

>>> a = "5"
>>> b = 5
>>> a + b