Strings in Python at a glance:
str1="Hello"# A new string using double quotesstr2='Hello'# Single quotes do the samestr3="Hello\tworld\n"# One with a tab and a newlinestr4=str1+" world"# Concatenationstr5=str1+str(4)# Concatenation with a numberstr6=str1[2]# 3rd characterstr6a=str1[-1]# Last character#str1[0] = "M" # No way; strings are immutableforcharinstr1:print(char)# For each characterstr7=str1[1:]# Without the 1st characterstr8=str1[:-1]# Without the last characterstr9=str1[1:4]# Substring: 2nd to 4th characterstr10=str1*3# Repetitionstr11=str1.lower()# Lowercasestr12=str1.upper()# Uppercasestr13=str1.rstrip()# Strip right (trailing) whitespacestr14=str1.replace('l','h')# Replacementlist15=str1.split('l')# Splittingifstr1==str2:print("Equ")# Equality testif"el"instr1:print("In")# Substring testlength=len(str1)# Lengthpos1=str1.find('llo')# Index of substring or -1pos2=str1.rfind('l')# Index of substring, from the rightcount=str1.count('l')# Number of occurrences of a substringprint(str1,str2,str3,str4,str5,str6,str7,str8,str9,str10)print(str11,str12,str13,str14,list15)print(length,pos1,pos2,count)
See also chapterRegular Expression for advanced pattern matching on strings in Python.
Two strings are equal if they haveexactly the same contents, meaning that they are both the same length and each character has a one-to-one positional correspondence. Many other languages compare strings by identity instead; that is, two strings are considered equal only if they occupy the same space in memory. Python uses theis
operator to test the identity of strings and any two objects in general.
Examples:
>>>a='hello';b='hello'# Assign 'hello' to a and b.>>>a==b# check for equalityTrue>>>a=='hello'#True>>>a=="hello"# (choice of delimiter is unimportant)True>>>a=='hello '# (extra space)False>>>a=='Hello'# (wrong case)False
There are two quasi-numerical operations which can be done on strings -- addition and multiplication. String addition is just another name for concatenation, which is simply sticking the strings together. String multiplication is repetitive addition, or concatenation. So:
>>>c='a'>>>c+'b''ab'>>>c*5'aaaaa'
There is a simple operator 'in' that returns True if the first operand is contained in the second. This also works on substrings:
>>>x='hello'>>>y='ell'>>>xinyFalse>>>yinxTrue
Note that 'print(x in y)' would have also returned the same value.
Much like arrays in other languages, the individual characters in a string can be accessed by an integer representing its position in the string. The first character in string s would be s[0] and the nth character would be at s[n-1].
>>>s="Xanadu">>>s[1]'a'
Unlike arrays in other languages, Python also indexes the arrays backwards, using negative numbers. The last character has index -1, the second to last character has index -2, and so on.
>>>s[-4]'n'
We can also use "slices" to access a substring of s. s[a:b] will give us a string starting with s[a] and ending with s[b-1].
>>>s[1:4]'ana'
None of these are assignable.
>>>print(s)>>>s[0]='J'Traceback(mostrecentcalllast):File"<stdin>",line1,in?TypeError:objectdoesnotsupportitemassignment>>>s[1:3]="up"Traceback(mostrecentcalllast):File"<stdin>",line1,in?TypeError:objectdoesnotsupportsliceassignment>>>print(s)
Outputs (assuming the errors were suppressed):
XanaduXanadu
Another feature of slices is that if the beginning or end is left empty, it will default to the first or last index, depending on context:
>>>s[2:]'nadu'>>>s[:3]'Xan'>>>s[:]'Xanadu'
You can also use negative numbers in slices:
>>>print(s[-2:])'du'
To understand slices, it's easiest not to count the elements themselves. It is a bit like counting not on your fingers, but in the spaces between them. The list is indexed like this:
Element: 1 2 3 4Index: 0 1 2 3 4 -4 -3 -2 -1
So, when we ask for the [1:3] slice, that means we start at index 1, and end at index 2, and take everything in between them. If you are used to indexes in C or Java, this can be a bit disconcerting until you get used to it.
String constants can be found in the standard string module. An example is string.digits, which equals to '0123456789'.
Links:
There are a number of methods or built-in string functions:
Only emphasized items will be covered.
isalnum(), isalpha(), isdigit(), islower(), isupper(), isspace(), and istitle() fit into this category.
The length of the string object being compared must be at least 1, or the is* methods will return False. In other words, a string object of len(string) == 0, is considered "empty", or False.
Example:
>>>'2YK'.istitle()False>>>'Y2K'.istitle()True>>>'2Y K'.istitle()True
Returns the string converted to title case, upper case, lower case, inverts case, or capitalizes, respectively.
Thetitle method capitalizes the first letter of each word in the string (and makes the rest lower case). Words are identified as substrings of alphabetic characters that are separated by non-alphabetic characters, such as digits, or whitespace. This can lead to some unexpected behavior. For example, the string "x1x" will be converted to "X1X" instead of "X1x".
Theswapcase method makes all uppercase letters lowercase and vice versa.
Thecapitalize method is like title except that it considers the entire string to be a word. (i.e. it makes the first character upper case and the rest lower case)
Example:
s='Hello, wOrLD'print(s)# 'Hello, wOrLD'print(s.title())# 'Hello, World'print(s.swapcase())# 'hELLO, WoRld'print(s.upper())# 'HELLO, WORLD'print(s.lower())# 'hello, world'print(s.capitalize())# 'Hello, world'
Keywords: to lower case, to upper case, lcase, ucase, downcase, upcase.
Returns the number of the specified substrings in the string. i.e.
>>>s='Hello, world'>>>s.count('o')# print the number of 'o's in 'Hello, World' (2)2
Hint: .count() is case-sensitive, so this example will only count the number of lowercase letter 'o's. For example, if you ran:
>>>s='HELLO, WORLD'>>>s.count('o')# print the number of lowercase 'o's in 'HELLO, WORLD' (0)0
Returns a copy of the string with the leading (lstrip) and trailing (rstrip) whitespace removed. strip removes both.
>>>s='\t Hello, world\n\t '>>>print(s)Hello,world>>>print(s.strip())Hello,world>>>print(s.lstrip())Hello,world# ends here>>>print(s.rstrip())Hello,world
Note the leading and trailing tabs and newlines.
Strip methods can also be used to remove other types of characters.
importstrings='www.wikibooks.org'print(s)print(s.strip('w'))# Removes all w's from outsideprint(s.strip(string.lowercase))# Removes all lowercase letters from outsideprint(s.strip(string.printable))# Removes all printable characters
Outputs:
www.wikibooks.org.wikibooks.org.wikibooks.
Note that string.lowercase and string.printable require an import string statement
left, right or center justifies a string into a given field size (the rest is padded with spaces).
>>>s='foo'>>>s'foo'>>>s.ljust(7)'foo '>>>s.rjust(7)' foo'>>>s.center(7)' foo '
Joins together the given sequence with the string as separator:
>>>seq=['1','2','3','4','5']>>>' '.join(seq)'1 2 3 4 5'>>>'+'.join(seq)'1+2+3+4+5'
map may be helpful here: (it converts numbers in seq into strings)
>>>seq=[1,2,3,4,5]>>>' '.join(map(str,seq))'1 2 3 4 5'
now arbitrary objects may be in seq instead of just strings.
The find and index methods return the index of the first found occurrence of the given subsequence. If it is not found, find returns -1 but index raises a ValueError.rfind and rindex are the same as find and index except that they search through the string from right to left (i.e. they find the last occurrence)
>>>s='Hello, world'>>>s.find('l')2>>>s[s.index('l'):]'llo, world'>>>s.rfind('l')10>>>s[:s.rindex('l')]'Hello, wor'>>>s[s.index('l'):s.rindex('l')]'llo, wor'
Because Python strings accept negative subscripts, index is probably better used in situations like the one shown because using find instead would yield an unintended value.
Replace works just like it sounds. It returns a copy of the string with all occurrences of the first parameter replaced with the second parameter.
>>>'Hello, world'.replace('o','X')'HellX, wXrld'
Or, using variable assignment:
string='Hello, world'newString=string.replace('o','X')print(string)print(newString)
Outputs:
Hello, worldHellX, wXrld
Notice, the original variable (string
) remains unchanged after the call toreplace
.
Replaces tabs with the appropriate number of spaces (default number of spaces per tab = 8; this can be changed by passing the tab size as an argument).
s='abcdefg\tabc\ta'print(s)print(len(s))t=s.expandtabs()print(t)print(len(t))
Outputs:
abcdefg abc a13abcdefg abc a17
Notice how (although these both look the same) the second string (t) has a different length because each tab is represented by spaces not tab characters.
To use a tab size of 4 instead of 8:
v=s.expandtabs(4)print(v)print(len(v))
Outputs:
abcdefg abc a13
Please note each tab is not always counted as eight spaces. Rather a tab "pushes" the count to the next multiple of eight. For example:
s='\t\t'print(s.expandtabs().replace(' ','*'))print(len(s.expandtabs()))
Output:
**************** 16
s='abc\tabc\tabc'print(s.expandtabs().replace(' ','*'))print(len(s.expandtabs()))
Outputs:
abc*****abc*****abc 19
Thesplit method returns a list of the words in the string. It can take a separator argument to use instead of whitespace.
>>>s='Hello, world'>>>s.split()['Hello,','world']>>>s.split('l')['He','','o, wor','d']
Note that in neither case is the separator included in the split strings, but empty strings are allowed.
Thesplitlines method breaks a multiline string into many single line strings. It is analogous to split('\n') (but accepts '\r' and '\r\n' as delimiters as well) except that if the string ends in a newline character,splitlines ignores that final character (see example).
>>>s="""... One line... Two lines... Red lines... Blue lines... Green lines... """>>>s.split('\n')['','One line','Two lines','Red lines','Blue lines','Green lines','']>>>s.splitlines()['','One line','Two lines','Red lines','Blue lines','Green lines']
The methodsplit also accepts multi-character string literals:
txt='May the force be with you'spl=txt.split('the')print(spl)# ['May ', ' force be with you']
In Python 3.x, all strings (the type str) contain Unicode per default.
In Python 2.x, there is a dedicated unicode type in addition to the str type: u = u"Hello"; type(u) is unicode.
The topic name in the internal help is UNICODE.
Examples for Python 3.x:
Examples for Python 2.x:
Links: