lasacs.com/ask/506
lasacs.com/ask/711
What is the output of the code below?
s="computer science"�print(s[1:5])
What is the output of the code below?
myString = "this is really a string"�print(myString.replace("is", "was"))
What is the output of the code below?
myString = "this is really a string"�myString.replace("is", "was")
print(myString)
What is the output of the code below?
s="LASA"�print(len(s))
Which of the following is the same as s[0:-1]?