.swapcase()
Anonymous contributor
Anonymous contributor3077 contributions
Anonymous contributor
Published Jun 10, 2021Updated Sep 3, 2021
Contribute to Docs
Takes a string and returns a copy of that string in which all lowercase letters are uppercase, and all upercase letters are lowercase. Numbers and symbols are not changed.
Syntax
string.swapcase()
Example 1
message = "Hello, World!"new_string = message.swapcase()print(new_string)# Output: "hELLO, wORLD!"
Example 2
The .swapcase()
method does not change the string it is used on:
All contributors
- Anonymous contributorAnonymous contributor3077 contributions
- Anonymous contributor
- CyberRedPanda
- christian.dinh
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.