Difference between revisions of "Code Snippet: Changing Character Case"

From Coder Merlin
(Created page with "let string = "For the world is hollow, and I have touched the sky!" print(string.uppercased()) print(string.lowercased())")
(No difference)

Revision as of 10:11, 5 December 2018

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

let string = "For the world is hollow, and I have touched the sky!" print(string.uppercased()) print(string.lowercased())