0% found this document useful (0 votes)
3 views

Python - Strings

The document provides a comprehensive overview of strings in Python, detailing their immutable nature, creation, and various operations such as slicing, updating, and formatting. It also covers special operators, escape characters, and built-in string methods and functions for manipulation. Additionally, it explains the use of single, double, and triple quotes for string representation, as well as the handling of multi-line strings.

Uploaded by

kanarioann16
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Python - Strings

The document provides a comprehensive overview of strings in Python, detailing their immutable nature, creation, and various operations such as slicing, updating, and formatting. It also covers special operators, escape characters, and built-in string methods and functions for manipulation. Additionally, it explains the use of single, double, and triple quotes for string representation, as well as the handling of multi-line strings.

Uploaded by

kanarioann16
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

Python - Strings

In Python, a string is an immutable sequence of Unicode characters. Each character has a


unique numeric value as per the UNICODE standard. But, the sequence as a whole, doesn't have
any numeric value even if all the characters are digits. To differentiate the string from numbers
and other identifiers, the sequence of characters is included within single, double or triple quotes
in its literal representation. Hence, 1234 is a number (integer) but '1234' is a string.

Creating Python Strings

As long as the same sequence of characters is enclosed, single or double or triple quotes don't
matter.

Accessing Values in Strings

Python does not support a character type; these are treated as strings of length one, thus also
considered a substring.

To access substrings, use the square brackets for slicing along with the index or indices to obtain
your substring. For example −

var1 = 'Hello World!'

var2 = "Python Programming"

print ("var1[0]: ", var1[0])

print ("var2[1:5]: ", var2[1:5])

When the above code is executed, it produces the following result −

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 −

var1 = 'Hello World!'

print ("Updated String :- ", var1[:6] + 'Python')

When the above code is executed, it produces the following result −

Updated String :- Hello Python

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

\a 0x07 Bell or alert

\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

\nnn Octal notation, where n is in the range 0.7

\r 0x0d Carriage return

\s 0x20 Space

\t 0x09 Tab

\v 0x0b Vertical tab

\x Character x

Hexadecimal notation, where n is in the range 0.9, a.f,


\xnn
or A.F

String Special Operators

Assume string variable a holds 'Hello' and variable b holds 'Python', then −

Operator Description Example

a + b will give
+ Concatenation - Adds values on either side of the operator
HelloPython

Repetition - Creates new strings, concatenating multiple copies of the a*2 will give -
*
same string HelloHello
[] Slice - Gives the character from the given index a[1] will give e

a[1:4] will give


[:] Range Slice - Gives the characters from the given range
ell

in Membership - Returns true if a character exists in the given string H in a will give 1

Membership - Returns true if a character does not exist in the given M not in a will
not in
string give 1

Raw String - Suppresses actual meaning of Escape characters. The


syntax for raw strings is exactly the same as for normal strings with print r'\n' prints
r/R the exception of the raw string operator, the letter "r," which precedes \n and print
the quotation marks. The "r" can be lowercase (r) or uppercase (R) R'\n'prints \n
and must be placed immediately preceding the first quote mark.

See at next
% Format - Performs String formatting
section

String Formatting Operator

One of Python's coolest features is the string format operator %. This operator is unique to
strings and makes up for the pack of having functions from C's printf() family. Following is a
simple example −

print ("My name is %s and weight is %d kg!" % ('Zara', 21))

When the above code is executed, it produces the following result −

My name is Zara and weight is 21 kg!


Here is the list of complete set of symbols which can be used along with % −

Sr.No. Format Symbol & Conversion

%c
1
character

%s
2
string conversion via str() prior to formatting

%i
3
signed decimal integer

%d
4
signed decimal integer

%u
5
unsigned decimal integer

%o
6
octal integer

%x
7
hexadecimal integer (lowercase letters)

%X
8
hexadecimal integer (UPPERcase letters)
%e
9
exponential notation (with lowercase 'e')

%E
10
exponential notation (with UPPERcase 'E')

%f
11
floating point real number

%g
12
the shorter of %f and %e

%G
13
the shorter of %f and %E

Other supported symbols and functionality are listed in the following table −

Sr.No. Symbol & Functionality

*
1
argument specifies width or precision

-
2
left justification

+
3
display the sign
<sp>
4
leave a blank space before a positive number

5 add the octal leading zero ( '0' ) or hexadecimal leading '0x' or '0X', depending on whether 'x'
or 'X' were used.

0
6
pad from left with zeros (instead of spaces)

%
7
'%%' leaves you with a single literal '%'

(var)
8
mapping variable (dictionary arguments)

m.n.

9 m is the minimum total width and n is the number of digits to display after the decimal point
(if appl.)

Double Quotes in Python Strings

You want to embed some text in double quotes as a part of string, the string itself should be put
in single quotes. To embed a single quoted text, string should be written in double quotes.

Example

var = 'Welcome to "Python Tutorial" from TutorialsPoint'

print ("var:", var)


var = "Welcome to 'Python Tutorial' from TutorialsPoint"

print ("var:", var)

It will produce the following output −

var: Welcome to "Python Tutorial" from TutorialsPoint

var: Welcome to 'Python Tutorial' from TutorialsPoint

Triple Quotes

To form a string with triple quotes, you may use triple single quotes, or triple double quotes −
both versions are similar.

Example

var = '''Welcome to TutorialsPoint'''

print ("var:", var)

var = """Welcome to TutorialsPoint"""

print ("var:", var)

It will produce the following output −

var: Welcome to TutorialsPoint

var: Welcome to TutorialsPoint


Python Multiline Strings

Triple quoted string is useful to form a multi-line string.

Example

var = '''

Welcome To

Python Tutorial

from TutorialsPoint

'''

print ("var:", var)

It will produce the following output −

var:

Welcome To

Python Tutorial

from TutorialsPoint

Arithmetic Operators with Strings

A string is a non-numeric data type. Obviously, we cannot use arithmetic operators with string
operands. Python raises TypeError in such a case.

print ("Hello"-"World")

On executing the above program it will generate the following error −

>>> "Hello"-"World"

Traceback (most recent call last):

File "<stdin>", line 1, in <module>


TypeError: unsupported operand type(s) for -: 'str' and 'str'

Getting Type of Python Strings

A string in Python is an object of str class. It can be verified with type() function.

Example

var = "Welcome To TutorialsPoint"

print (type(var))

It will produce the following output −

<class 'str'>

Built-in String Methods

Python includes the following built-in methods to manipulate strings −

Sr.No. Methods with Description

capitalize()
1
Capitalizes first letter of string.

casefold()

2 Converts all uppercase letters in string to lowercase. Similar to lower(), but works on
UNICODE characters alos.

center(width, fillchar)
3
Returns a space-padded string with the original string centered to a total of width columns.
count(str, beg= 0,end=len(string))

4 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')

5 Decodes the string using the codec registered for encoding. encoding defaults to the default
string encoding.

encode(encoding='UTF-8',errors='strict')

6 Returns encoded string version of string; on error, default is to raise a ValueError unless
errors is given with 'ignore' or 'replace'.

endswith(suffix, beg=0, end=len(string))

7 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)

8 Expands tabs in string to multiple spaces; defaults to 8 spaces per tab if tabsize not
provided.

find(str, beg=0 end=len(string))

9 Determine if str occurs in string or in a substring of string if starting index beg and ending
index end are given returns index if found and -1 otherwise.

format(*args, **kwargs)
10
This method is used to format the current string value.
format_map(mapping)

11 This method is also use to format the current string the only difference is it uses a mapping
object.

index(str, beg=0, end=len(string))


12
Same as find(), but raises an exception if str not found.

isalnum()

13 Returns true if string has at least 1 character and all characters are alphanumeric and false
otherwise.

isalpha()

14 Returns true if string has at least 1 character and all characters are alphabetic and false
otherwise.

isascii()
15
Returns True is all the characters in the string are from the ASCII character set.

isdecimal()
16
Returns true if a unicode string contains only decimal characters and false otherwise.

isdigit()
17
Returns true if string contains only digits and false otherwise.

isidentifier()
18
Checks whether the string is a valid Python identifier.
islower()

19 Returns true if string has at least 1 cased character and all cased characters are in lowercase
and false otherwise.

isnumeric()
20
Returns true if a unicode string contains only numeric characters and false otherwise.

isprintable()
21
Checks whether all the characters in the string are printable.

isspace()
22
Returns true if string contains only whitespace characters and false otherwise.

istitle()
23
Returns true if string is properly "titlecased" and false otherwise.

isupper()

24 Returns true if string has at least one cased character and all cased characters are in
uppercase and false otherwise.

join(seq)

25 Merges (concatenates) the string representations of elements in sequence seq into a string,
with separator string.

ljust(width[, fillchar])

26 Returns a space-padded string with the original string left-justified to a total of width
columns.
lower()
27
Converts all uppercase letters in string to lowercase.

lstrip()
28
Removes all leading white space in string.

maketrans()
29
Returns a translation table to be used in translate function.

partition()
30
Splits the string in three string tuple at the first occurrence of separator.

removeprefix()
31
Returns a string after removing the prefix string.

removesuffix()
32
Returns a string after removing the suffix string.

replace(old, new [, max])


33
Replaces all occurrences of old in string with new or at most max occurrences if max given.

rfind(str, beg=0,end=len(string))
34
Same as find(), but search backwards in string.

rindex( str, beg=0, end=len(string))


35
Same as index(), but search backwards in string.
rjust(width,[, fillchar])

36 Returns a space-padded string with the original string right-justified to a total of width
columns.

rpartition()
37
Splits the string in three string tuple at the ladt occurrence of separator.

rsplit()
38
Splits the string from the end and returns a list of substrings.

rstrip()
39
Removes all trailing whitespace of string.

split(str="", num=string.count(str))

40 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'))

41 Splits string at all (or num) NEWLINEs and returns a list of each line with NEWLINEs
removed.

startswith(str, beg=0,end=len(string))

42 Determines if string or a substring of string (if starting index beg and ending index end are
given) starts with substring str; returns true if so and false otherwise.

strip([chars])
43
Performs both lstrip() and rstrip() on string.
swapcase()
44
Inverts case for all letters in string.

title()

45 Returns "titlecased" version of string, that is, all words begin with uppercase and the rest are
lowercase.

translate(table, deletechars="")

46 Translates string according to translation table str(256 chars), removing those in the del
string.

upper()
47
Converts lowercase letters in string to uppercase.

zfill (width)

48 Returns original string leftpadded with zeros to a total of width characters; intended for
numbers, zfill() retains any sign given (less one zero).

Built-in Functions with Strings

Following are the built-in functions we can use with strings −

Sr.No. Function with Description

len(list)
1
Returns the length of the string.

2 max(list)
Returns the max alphabetical character from the string str.

min(list)
3
Returns the min alphabetical character from the string str.

You might also like