python echo in console 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: print stuff in console python
print("ENTER STUF YOU WANNA PUT INTO CONSOLE HERE")