Python: Strings and it's frequently used methods

Accessing string characters via index, string slicing and frequently used str methods such as find, replace. How to read input from Standard Input STDIN

January 4, 2013 - 5 minute read -
python string-slicing python-str

Strings are just words or a combination of words. Python has a built-in class str, which comes in handy while dealing with words or sentences.

Table of Contents

How to declare a string in Python?

Strings are surrounded by either " or '.

>>> s = 'susan'
>>> s
'susan'
>>> type(s)
<type 'str'>

But hey! Why does it print the quotes along-with? Python merely outputs whatever is returned from the last statement. When we types s, it returned the object 'susan'. To print the word ‘susan’ without quotes, python comes with print() function. It will print the string s as is.

>>> print(s)
susan

Accessing string characters in Python

Each character of a string has some index value. Index values starts from 0.

-----------------
str   | s u s a n
index | 0 1 2 3 4
-----------------

We can access any character of a string by providing the index of that character.

>>> s[0]
's'
>>> s[1]
'u'
>>> s[2]
's'
>>> s[3]
'a'
>>> s[4]
'n'

What if we go beyond the length of the string? Let’s try it out.

>>> s[5]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IndexError: string index out of range

Python raises an error saying that the index is out of range. How do I know what is the length of the string?

>>> len(s)
5

Function len() returns the length of string. It can also be used for many other types of objects.

With this information, one might think that I can change a string by changing the values at any index of the string. Smart! However, Python strings are immutable, which means that once declared, strings cannot be altered. If we really want to have the facility of altering a list of characters, we can use Python Lists.

However, we can use multiple strings to form another string.

>>> a = 'Hi'
>>> b = 'Susan'
>>> print(a + b) # Joins two strings
HiSusan
>>> print(a + ' ' + b) # We want a space between those words
Hi Susan

String Slicing in Python

Using slicing we can extract out sub-strings of any string. We have to provide the starting index and the ending index i.e. string[start:end]

>>> s[1:4]
'usa'

It starts from start and ends right before end. It won’t print the character at the index end. As in the example above, we have n at the 4th index of "susan", however, it printed only till a.

Python also supports negative indexing! It means that if you want to access the last character of any string, you could simply do s[-1]

>>> s[-1]
'n'
---------------------------
str        |  s  u  s  a  n
+ve index  |  0  1  2  3  4
-ve index  | -5 -4 -3 -2 -1
---------------------------

So we can also slice strings using -ve indices!

>>> s[-4:-1]
'usa'

If the start is out of the range of the string, then it prints empty string.

>>> s[5:7]
''

If you don’t provide start, then it will print from start till end-1 character.

>>> s[:3]
'sus'

Similarly, if end is not provided, it prints till the end of string.

>>> s[2:]
'san'

And if we don’t provide either of them? You guessed it right! It prints the whole string as is.

>>> s[:]
'susan'

Frequently used string methods

>>> s.upper() # Returns the string in uppercase
'SUSAN'
>>> s.lower() # Returns the string in lowercase
'susan'
>>> s.replace('s','z') # Replaces all the occurrences of 's' by 'z'
'zuzan'
>>> s.find('a') # Returns the index of first occurrence of 'a' in s
3
>>> s.find('k') # Returns -1 if no such string found in s
-1

Reading input from Standard Input (STDIN) in Python

Python built-in method raw_input() is used to read strings from Standard Input stream

>>> name = raw_input('Who are you?') # It will wait for you to type something and hit Enter key
Who are you?Ravi
>>> print('Welcome! ' + name)
Welcome! Ravi

Next, we will see how to control the flow of a program depending on various conditions.


Note: This is a part of what I learned in an online Open Course Ware offered by MIT on edX. Its for my personal reference & also for those who would like to revisit the course.