Strings Python
Strings Python
Like many other popular programming languages, strings in Python are arrays of
bytes representing unicode characters.
However, Python does not have a character data type, a single character is simply a
string with a length of 1.
String Length
To get the length of a string, use the len() function.
a = "Hello, World!"
print(len(a))
Check String
To check if a certain phrase or character is present in a string, we can use the
keyword in.
txt = "The best things in life are free!"
print("free" in txt)
Check if NOT
To check if a certain phrase or character is NOT present in a string, we can use
the keyword not in.
Slicing
Specify the start index and the end index, separated by a colon, to return a part
of the string.
Negative Indexing
Use negative indexes to start the slice from the end of the string:
String Concatenation
To concatenate, or combine, two strings you can use the + operator.
Merge variable a with variable b into variable c:
a = "Hello"
b = "World"
c = a + b
print(c)
To add a space between them, add a " ":
String Format
As we learned in the Python Variables chapter, we cannot combine strings and
numbers like this:
age = "36"
txt = "My name is John, I am " + age
print(txt)
F-Strings
F-String was introduced in Python 3.6, and is now the preferred way of formatting
strings.
price = 59
txt = f"The price is {price} dollars"
print(txt)
age=17
dob="04-11-2006"
Example
Display the price with 2 decimals:
price = 59
txt = f"The price is {price:.2f} dollars"
print(txt)
Perform a math operation in the placeholder, and return the result:
txt = f"The price is {20 * 59} dollars"
print(txt)