Python Strings¶
Strings are just a variable that is assigned a series of characters between a single, double or tripple quotes.
Combine Strings¶
You can combine strings using the + sign
print("Python" + "Programming")
PythonProgramming
Length of a String¶
You can check how long a string is (how many characters it has including spaces) using the len() method:
word = "python"
print("Length of string: ", len(word))
Length of string: 6
Extracting specific characters¶
You can get specific characters from a string using the bracket notation by using the index:
[0] [1] [2] [3] [4] [5]
p - y - t - h - o - n
print("The first character in the word is: ", word[0])
The first character in the word is: p
You can ge the last character of a string by using the same bracket notation but with -1 which means the last character from the end.
print("The last character in the word is: ", word[-1])
The last character in the word is: n
To get the first three characters of a string you would use the splice notation:
print("The first three characters in the word are: ", word[0:3])
The first three characters in the word are: pyt
Replacing string values¶
You cannot normally assign a different character in a string. For example if we wanted to replace the 'p' in python with an 's', we would get an error if we tried this:
word[0] = 's'
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) Cell In[36], line 1 ----> 1 word[0] = 's' TypeError: 'str' object does not support item assignment
However, we can replace a character using the replace method:
word = word.replace("p", "s")
print(word)
sython
You can also slice the string and then replace it with a diffrent part of a string:
word = word[0:3] + "something" + word[3:]
print(word)
sytsomethinghon
Checking Strings¶
We can check if a string exists within a string:
languages = "python and c"
print("python" in languages)
True
print("java" in languages)
False
You can find the first index of a string if a string matches:
print("Index location of the word and starts at index: ", languages.find('and'))
Index location of the word and starts at index: 7
You can check if a all characters in a string are alphabet characters using isalpha() (not including spaces):
"word".isalpha()
True
Check if all characters are numerical:
"123".isnumeric()
True
Or even both
"word123".isalnum()
True
Removing white spaces (regular spaces)¶
You can remove spaces from the left and right side of a string using the strip() method:
" Lots of spaces ".strip()
'Lots of spaces'
Only the left side:
" Lots of spaces ".lstrip()
'Lots of spaces '
Only the right side:
" Lots of spaces ".rstrip()
' Lots of spaces'
Converting a List <-> String¶
If you want to convert a list into a string separated by spaces, you would do:
" ".join(["List", "of", "words"])
'List of words'
and a string into a list based on how the words are separated:
"List of words".split(" ")
['List', 'of', 'words']
Formating Strings¶
You can format the output of your strings using f-strings:
version = 3
f"You are using Python {version}"
'You are using Python 3'
Yyou can make characters upper case or lower case:
"Some words".lower()
'some words'
"Some words".upper()
'SOME WORDS'