We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use a method to make the string "aldous Huxley was born in 1894." grammatically correct by capitalizing the first letter in the sentence.
The code you provide produces this:
Aldous Huxley Was Born In 1894. He Was Born In The United Kingdom.
not
Aldous Huxley was born in 1894.
Take the string "Where now? Who now? When now?" and call a method that returns a list that looks like: [" Where now?", "Who now?", "When now?"].
The code you provide produces:
['Where now', ' Who now', ' When now', '']
[" Where now?", "Who now?", "When now?"]
The text was updated successfully, but these errors were encountered:
I 2nd this. Using split seems to not only remove the character being used to split, but retains the character in the print result.
Sorry, something went wrong.
3rd this! Also just posted an issue with the next problem as well.
No branches or pull requests
The code you provide produces this:
Aldous Huxley Was Born In 1894. He Was Born In The United Kingdom.
not
Aldous Huxley was born in 1894.
The code you provide produces:
['Where now', ' Who now', ' When now', '']
not
[" Where now?", "Who now?", "When now?"]
The text was updated successfully, but these errors were encountered: