tool the design output in python code example
Example: how to outoutp pythopn
# how to out put in Python
print("Hello World!") # using double quotes
print('Hello World!') # using single quotes
# no using a double quote and a single quote, or there shall be an error!
# to print variables:
# declaring variable:
name = "Bob"
print(name) # output: Bob