Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chicagowebmanagement/e785b42e4e39657d6d67a6f4da739d18 to your computer and use it in GitHub Desktop.
Save chicagowebmanagement/e785b42e4e39657d6d67a6f4da739d18 to your computer and use it in GitHub Desktop.
Make the first letter of this string uppercase: "aldous Huxley was born in 1894."
"""
Author: Patrick Elward
Date: 03/27/2019
Make the first letter of this string uppercase: "aldous Huxley was born in 1894
Note: capitalize does NOT need a parameter
"""
x="aldous Huxley was born in 1894."
print(x.capitalize())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment