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("!")
Suppose the string "WONDERFUL!!" is assigned to the variable text, which of the following will change the value of text
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am