how to use console in python code example
Example 1: how to print to console python
print(value)
print("Hello, World!") # String
print(3) # Number
print(True) # Boolean
# Can also print a variable.
Example 2: how to write something in the pyton console
#to write something in the console just type print()
#like this:
print("Hello World!")