Python Output Using print() function
We use the print() function to output data to the standard output device (screen). We can also output data to a file, but this will be discussed later.
example
x= input(Enter Welcome Message:")
print("Hello", x)