Python - Strings: Accessing Values in Strings
Python - Strings: Accessing Values in Strings
Python - Strings
Advertisements
Strings are amongst the most popular types in Python. We can create them simply by
enclosing characters in quotes. Python treats single quotes the same as double quotes.
Creating strings is as simple as assigning a value to a variable. For example −
To access substrings, use the square brackets for slicing along with the index or indices to
obtain your substring. For example −
Live Demo
#!/usr/bin/python
var1[0]: H
var2[1:5]: ytho
Updating Strings
You can "update" an existing string by (re)assigning a variable to another string. The new
value can be related to its previous value or to a completely different string altogether. For
example −
#!/usr/bin/python Live Demo
Escape Characters
Following table is a list of escape or non-printable characters that can be represented with
backslash notation.
An escape character gets interpreted; in a single quoted as well as double quoted strings.
Backslash Hexadecimal
Description
notation character
\b 0x08 Backspace
\cx Control-x
\C-x Control-x
\e 0x1b Escape
\f 0x0c Formfeed
\M-\C-x Meta-Control-x
\n 0x0a Newline
\s 0x20 Space
\t 0x09 Tab
\x Character x
Here is the list of complete set of symbols which can be used along with % −
%c character
%o octal integer
Other supported symbols and functionality are listed in the following table −
Symbol Functionality
- left justification
Triple Quotes
Python's triple quotes comes to the rescue by allowing strings to span multiple lines,
including verbatim NEWLINEs, TABs, and any other special characters.
The syntax for triple quotes consists of three consecutive single or double quotes.
Live Demo
#!/usr/bin/python
When the above code is executed, it produces the following result. Note how every single
special character has been converted to its printed form, right down to the last NEWLINE
at the end of the string between the "up." and closing triple quotes. Also note that
NEWLINEs occur either with an explicit carriage return at the end of a line or its escape
code (\n) −
Raw strings do not treat the backslash as a special character at all. Every character you
put into a raw string stays the way you wrote it −
Live Demo
#!/usr/bin/python
print 'C:\\nowhere'
C:\nowhere
Now let's make use of raw string. We would put expression in r'expression' as follows −
#!/usr/bin/python Live Demo
print r'C:\\nowhere'
C:\\nowhere
Unicode String
Normal strings in Python are stored internally as 8-bit ASCII, while Unicode strings are
stored as 16-bit Unicode. This allows for a more varied set of characters, including special
characters from most languages in the world. I'll restrict my treatment of Unicode strings
to the following −
Live Demo
#!/usr/bin/python
Hello, world!
As you can see, Unicode strings use the prefix u, just as raw strings use the prefix r.
capitalize()
1
Capitalizes first letter of string
center(width, fillchar)
3 Counts how many times str occurs in string or in a substring of string if starting
index beg and ending index end are given.
decode(encoding='UTF-8',errors='strict')
4 Decodes the string using the codec registered for encoding. encoding defaults
to the default string encoding.
5 encode(encoding='UTF-8',errors='strict')
Returns encoded string version of string; on error, default is to raise a
ValueError unless errors is given with 'ignore' or 'replace'.
6 Determines if string or a substring of string (if starting index beg and ending
index end are given) ends with suffix; returns true if so and false otherwise.
expandtabs(tabsize=8)
isalnum()
10 Returns true if string has at least 1 character and all characters are
alphanumeric and false otherwise.
isalpha()
11 Returns true if string has at least 1 character and all characters are alphabetic
and false otherwise.
isdigit()
12
Returns true if string contains only digits and false otherwise.
islower()
13 Returns true if string has at least 1 cased character and all cased characters
are in lowercase and false otherwise.
isnumeric()
14 Returns true if a unicode string contains only numeric characters and false
otherwise.
isspace()
15
Returns true if string contains only whitespace characters and false otherwise.
16 istitle()
Returns true if string is properly "titlecased" and false otherwise.
isupper()
17 Returns true if string has at least one cased character and all cased characters
are in uppercase and false otherwise.
join(seq)
len(string)
19 Returns the length of the string
ljust(width[, fillchar])
lower()
21
Converts all uppercase letters in string to lowercase.
lstrip()
22
Removes all leading whitespace in string.
maketrans()
23
Returns a translation table to be used in translate function.
max(str)
24 Returns the max alphabetical character from the string str.
min(str)
25
Returns the min alphabetical character from the string str.
26 Replaces all occurrences of old in string with new or at most max occurrences if
max given.
rfind(str, beg=0,end=len(string))
27
Same as find(), but search backwards in string.
rstrip()
30
Removes all trailing whitespace of string.
split(str="", num=string.count(str))
31 Splits string according to delimiter str (space if not provided) and returns list of
substrings; split into at most num substrings if given.
splitlines( num=string.count('\n'))
32 Splits string at all (or num) NEWLINEs and returns a list of each line with
NEWLINEs removed.
startswith(str, beg=0,end=len(string))
Determines if string or a substring of string (if starting index beg and ending
33
index end are given) starts with substring str; returns true if so and false
otherwise.
strip([chars])
34 Performs both lstrip() and rstrip() on string.
swapcase()
35
Inverts case for all letters in string.
title()
36 Returns "titlecased" version of string, that is, all words begin with uppercase
and the rest are lowercase.
translate(table, deletechars="")
upper()
38
Converts lowercase letters in string to uppercase.
zfill (width)
Advertisements