QP School
QP School
>
Tutorials
>
Python 3 Tutorials and examples
> Print formatting in Python 3
Full Version:
Print formatting in Python 3
You're currently viewing a stripped down version of our content.
View the full version
with proper formatting.
Qomplainerz
07-25-2023, 10:38 AM
name = "John"
age = 30
print("My name is {} and I am {} years old.".format(name, age))
QP School
>
Tutorials
>
Python 3 Tutorials and examples
> Print formatting in Python 3