Bertelsmann Tech Scholarship Challenge, Python, Udacity

Python – String Methods

There is so much that can be done with strings thanks to Methods. Methods actually are functions that are called using dot notation. What this means is that we put them after a string. For example, lower() is a string method that can be used like this, on a string called "sample string": sample_string.lower() A… Continue reading Python – String Methods