We've already learned one way to put together strings. What is it? →
String formatting allows you to put placeholders in your string where values should go.
What was it again?
Allowing placeholders in a string to accommodate variable / value substitution.
Both string concatenation and string formatting evaluate to a value - specifically a string! That means:
As for print()
Write a program that asks for the user's name. The program will print out "Hello (name)" using string formatting. →