The output of the program will be:
wonder woman
This is because the lower()
method converts all characters in the string to lowercase.
name="Wonder Woman"
print(name.lower())
(1 point)
Wonder Woman
wonder woman
name.lower()
an error message
1 answer
The output of the program will be:
wonder woman
This is because the lower()
method converts all characters in the string to lowercase.