Skip to content

Instantly share code, notes, and snippets.

@vladyio
Last active January 3, 2016 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vladyio/2634770fdee6da6b401c to your computer and use it in GitHub Desktop.
Save vladyio/2634770fdee6da6b401c to your computer and use it in GitHub Desktop.
def change_case(string):
"""
На входе: "how can mirrors be real if our eyes aren't real"
Должны получить: "How Can Mirrors Be Real If Our Eyes Aren't Real"
Получим на самом деле: "How Can Mirrors Be Real If Our Eyes Aren'T Real"
"""
return string.title()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment