Published onAugust 18, 2021Understanding the `map` Function in PythonpythonTry using `map` instead of loops to write Pythonic code.
Published onMay 10, 2021Initializing a character with an empty value in CCPythonData-Structure`string[0] = ''` is not allowed in C.
Published onMarch 10, 2021Customizing GitHub 'Languages' section in repositoryGitHubUse a `.gitattributes` file.
Published onMarch 9, 2021Handling uppercase and lowercase transformations in PythonPython`capitalize()`, `title()`, `upper()`, `lower()`, `swapcase()`