kyu_8.remove_string_spaces package

Submodules

kyu_8.remove_string_spaces.remove_string_spaces module

Solution for -> Remove String Spaces.

Created by Egor Kostan. GitHub: https://github.com/ikostan

kyu_8.remove_string_spaces.remove_string_spaces.no_space(x: str) str[source]

Remove the spaces from the string.

Parameters:

x – str

Returns:

str

kyu_8.remove_string_spaces.test_remove_string_spaces module

Test for -> Remove String Spaces.

Created by Egor Kostan. GitHub: https://github.com/ikostan

class kyu_8.remove_string_spaces.test_remove_string_spaces.NoSpaceTestCase(methodName='runTest')[source]

Bases: TestCase

Testing no_space function.

_classSetupFailed = False
_class_cleanups = []
test_something()[source]

Test that no_space function with various test dara.

Returns:

Module contents

Remove String Spaces.