kyu_7.pull_your_words_together_man package

Submodules

kyu_7.pull_your_words_together_man.sentencify module

kyu_7.pull_your_words_together_man.sentencify.sentencify(words)[source]

The function should:

  1. Capitalise the first letter of the first word.

  2. Add a period (.) to the end of the sentence.

  3. Join the words into a complete string, with spaces.

  4. Do no other manipulation on the words.

Parameters

words

Returns

kyu_7.pull_your_words_together_man.test_sentencify module

class kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase(methodName='runTest')[source]

Bases: unittest.case.TestCase

Testing ‘sentencify’ function

test_sentencify()[source]

Testing ‘sentencify’ function.

The function should:

  1. Capitalise the first letter of the first word.

  2. Add a period (.) to the end of the sentence.

  3. Join the words into a complete string, with spaces.

  4. Do no other manipulation on the words.

Returns

Module contents