1. Concatenation
Concatenation with the `+` Operator: You can concatenate strings using the `+` operator. For example:
name = "John"
age = 30
message = "My name is " + name + " and I am " + str(age) + " years old."
2. Using `%` Operator
The `%` operator can be used for basic string formatting. It allows you to substitute values into a string using placeholders. For example:
name = "John"
age = 30
message = "My name is %s and I am %d years old." % (name, age)
3. Using `format()` Method
The `format()` method provides a versatile way of formatting strings. It allows you to substitute values into placeholders using curly braces `{}`. For example:
name = "John"
age = 30
message = "My name is {} and I am {} years old.".format(name, age)
4. F-strings (Formatted String Literals)
F-strings are a more recent and concise way of string formatting introduced in Python 3.6 and above. They allow you to embed expressions inside curly braces `{}` within a string. For example:
name = "John"
age = 30
message = f"My name is {name} and I am {age} years old."
5. Specifying Format Specifiers
Format specifiers can be added within curly braces `{}` to control the formatting of values. For example:
pi = 3.14159
message = "Value of pi: {:.2f}".format(pi) # Outputs: Value of pi: 3.14
6. Aligning Text
You can use format specifiers to align text within a given width. For example:
name = "John"
age = 30
message = "Name: {:<10} Age: {:>5}".format(name, age)
# Outputs: Name: John Age: 30
7. Formatting Numeric Values
Format specifiers can be used to format numeric values, such as specifying the number of decimal places or padding with zeros. For example:
number = 42
message = "Value: {:04d}".format(number)
# Outputs: Value: 0042
“`
8. Date and Time Formatting
Python’s `datetime` module provides various format codes to format date and time values. You can use these codes within format specifiers to format dates and times. For example:
from datetime import datetime
current_time = datetime.now()
message = "Current time: {}".format(current_time.strftime("%Y-%m-%d %H:%M:%S"))
9. Escape Characters
If you need to include special characters within a string, you can use escape characters such as `\n` for a new line or `\”` for double quotes. For example:
message = "This is a string with a new line:\nSecond line starts here."
10. Use of $ sign
from string import Template
name = "John"
age = 30
template = Template("My name is $name and I am $age years old.")
message = template.substitute(name=name, age=age)
11. String Interpolation
Python 3.8 introduced the `f-string` syntax, also known as “Literal String Interpolation.” It is similar to f-strings but allows for more advanced expressions within the curly braces. For example:
name = "John"
age = 30
message = f"My name is {name.upper()} and I will be {age + 1} next year."
12. Using String Interpolation with dictionaries
With f-strings or `str.format()`, you can substitute values from a dictionary by specifying the key within curly braces. For example:
person = {"name": "John", "age": 30}
message = "My name is {name} and I am {age} years old.".format(**person)
These methods provide different ways to format strings in Python. Choose the one that suits your needs and enhances the readability and flexibility of your code.