To print like printf in Python you can make use of 'f strings'. These strings allow adding python expressions within braces inside strings.
EXAMPLE:
a=3
print(f"Using f strings to print the value of a which is = {a}")
OUTPUT:
Using f strings to print the value of a which is = 3