bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Python/Foundations
Python•Foundations

Python String Formatting

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Python String Formatting?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ = f"The price is 49 dollars"
3Order

Put the learning moves in the order that makes the concept easiest to apply.

Perform Operations in F-Strings
Placeholders and Modifiers
Python String Formatting

F-String was introduced in Python 3.6, and is now the preferred way of formatting strings.

Before Python 3.6 we had to use the format() method.

F-Strings

F-string allows you to format selected parts of a string.

To specify a string as an f-string, simply put an f in front of the string literal, like this:

Example

txt = f"The price is 49 dollars"

print(txt)

Placeholders and Modifiers

To format values in an f-string, add placeholders {} , a placeholder can contain variables, operations, functions, and modifiers to format the value.

price

A placeholder can also include a modifier to format the value.

A modifier is included by adding a colon : followed by a legal formatting type, like .2f which means fixed point number with 2 decimals:

Example

price = 59

txt = f"The price is {price:.2f} dollars"

print(txt)

You can also format a value directly without keeping it in a variable:

95

Perform Operations in F-Strings

You can perform Python operations inside the placeholders.

Example

txt = f"The price is {20 * 59} dollars"

print(txt)

Expected output

txt = f"The price is {20 * 59} dollars" print(txt)

You can do math operations

You can perform math operations on variables:

Example

price = 59

tax = 0.25

txt = f"The price is {price + (price * tax)} dollars"

print(txt)

You can perform if...else statements inside the placeholders:

Example

price = 49

txt = f"It is very {'Expensive' if price>50 else 'Cheap'}"

print(txt)

Execute Functions in F-Strings

You can execute functions inside the placeholder:

upper()

The function does not have to be a built-in Python method, you can create your own functions and use them:

Example

def myconverter(x):

  return x * 0.3048

txt = f"The plane is flying at a {myconverter(30000)} meter altitude"

print(txt)

More Modifiers

At the beginning of this chapter we explained how to use the .2f modifier to format a number into a fixed point number with 2 decimals.

There are several other modifiers that can be used to format values:

Example

price = 59000

txt = f"The price is {price:,} dollars"

print(txt)

Here is a list of all the formatting types.

Formatting Types
:<Left aligns the result (within the available space)
:>Right aligns the result (within the available space)
:^Center aligns the result (within the available space)
:=Places the sign to the left most position
:+Use a plus sign to indicate if the result is positive or negative
:-Use a minus sign for negative values only
:Use a space to insert an extra space before positive numbers (and a minus sign before negative numbers)
:,Use a comma as a thousand separator
:_Use a underscore as a thousand separator
:bBinary format
:cConverts the value into the corresponding Unicode character
:dDecimal format
:eScientific format, with a lower case e
:EScientific format, with an upper case E
:fFix point number format
:FFix point number format, in uppercase format (show inf and nan as INF and NAN )
:gGeneral format
:GGeneral format (using a upper case E for scientific notations)
:oOctal format
:xHex format, lower case
:XHex format, upper case
:nNumber format
:%Percentage format

String format()

Before Python 3.6 we used the format() method to format strings.

The format() method can still be used, but f-strings are faster and the preferred way to format strings.

The next examples in this page demonstrates how to format strings with the format() method.

The format() method also uses curly brackets as placeholders {} , but the syntax is slightly different:

Example

price = 49
txt = "The price is {} dollars"
print(txt.format(price))

You can add parameters inside the curly brackets to specify how to convert the value:

Example

txt = "The price is {:.2f} dollars"

Check out all formatting types in our String format() Reference .

Multiple Values

If you want to use more values, just add more values to the format() method:

print(txt.format(price, itemno, count))

Example

quantity = 3
itemno = 567
price = 49
myorder = "I want {} pieces of
item number {} for {:.2f} dollars."
print(myorder.format(quantity, itemno, price))

Index Numbers

You can use index numbers (a number inside the curly brackets {0} ) to be sure the values are placed in the correct placeholders:

Example

quantity = 3
itemno = 567
price = 49
myorder = "I want {0} pieces of
item number {1} for {2:.2f} dollars."
print(myorder.format(quantity, itemno, price))

Also, if you want to refer to the same value more than once, use the index number:

Example

age = 36
name = "John"
txt = "His name is {1}. {1} is {0} years old."
print(txt.format(age,
name))

Named Indexes

You can also use named indexes by entering a name inside the curly brackets {carname} , but then you must use names when you pass the parameter values txt.format(carname = "Ford") :

Example

myorder = "I have a {carname}, it is a {model}."
print(myorder.format(carname
= "Ford", model = "Mustang"))

Previous

Python Try Except

Next

Python None