0 votes
in Python by
Given a string s = “Welcome”, which of the following code is incorrect?

print s[0]

print s.lower()

s[1] = ‘r’

print s.strip()
...