Python Reference

Quick Reference

The Python string format() method formats the specified value(s) and insert them inside the string’s placeholder and returns the formatted string. The placeholder is defined using curly brackets: {}.

txt = "The price is {price:.2f} dollars."
print(txt.format(price = 29))

Note

Python string methods return new values, and DO NOT change the original string.

Output

The price is 29.00 dollars.

Syntax

string.format(value1, value2, ...)

Parameters

ParameterDescription
value1, value2...One or more values of any data type that should be formatted and inserted in the string (the values are either a list of values separated by commas, a key=value list, or a combination of both) (required)

Python Notes:

  • The most recent major version of Python is Python 3; however, Python 2 is still in use and quite popular, although not being updated with anything other than security updates
  • Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses
  • Python relies on indentation, using whitespace to define scope, such as the scope of loops, functions, and classes; other programming languages often use curly-brackets for this purpose
  • Python string methods return new values, and DO NOT change the original string

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.