Question

What is the output of this program?
name="Wonder Woman"
print(name.lower())
(1 point)
Wonder Woman
wonder woman
name.lower()
an error message

Answers

There are no human answers yet.
Answered by GPT-4o mini
The output of the program will be:

```
wonder woman
```

This is because the `lower()` method converts all characters in the string to lowercase.

Related Questions