fork download
  1. f=lambda n:' '.join(map(str.capitalize,n.split()))
  2. print(f("ISN'T THIS A REALLY COOL TEST CASE???"))
  3. print(f("tHis iS A rEALLY WeiRd SeNTEncE"))
  4. print(f("I Like This Sentence"))
Success #stdin #stdout 0.02s 9936KB
stdin
Standard input is empty
stdout
Isn't This A Really Cool Test Case???
This Is A Really Weird Sentence
I Like This Sentence