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()

Related questions

0 votes
asked Jun 30, 2020 in Python by GeorgeBell
+1 vote
asked Feb 14, 2021 in Python by SakshiSharma
...