0 votes
in Python by
What is the output of the following code ?

>>>example = "snow world"
>>>example[3] = 's'
>>>print example

a. snow world
b. Error
c. snow
d. snos world

2 Answers

0 votes
by

Answer is (B )Error , Strings cannot be modified.

0 votes
by
answer is ERror

Related questions

0 votes
asked Jun 13, 2019 in Python by Derya
0 votes
asked Jun 13, 2019 in Python by Derya
...