Suppose the string "WONDERFUL!!" is assigned to the variable text, which of the following will change the value of text
Posted: Wed Mar 30, 2022 9:20 am
Suppose the string "WONDERFUL!!" is assigned to the variable
text,
which of the following will change the value of text to
"wonderful"?
Suppose the string "WONDERFUL!!" is assigned to the variable text, which of the following will change the value of text to "wonderful"? text.lower() text.strip("!") text = text.lower() text = text.strip("!") text = text.lower().strip("!")
text,
which of the following will change the value of text to
"wonderful"?
Suppose the string "WONDERFUL!!" is assigned to the variable text, which of the following will change the value of text to "wonderful"? text.lower() text.strip("!") text = text.lower() text = text.strip("!") text = text.lower().strip("!")