Python 3.6 added a new string formatting approach called formatted string literals or “f-strings”.Example:
name = 'Bob'number = 42f"Hello, {name}, your number is {number:>08b}"
Output will be 'Hello, Bob, your number is 00001010!'
A discussion of this question can be found here - Here