The print function display message to the screen. The message can be string, integers, or any other object.
The print finction can be used with sep and/or end parameter.
The sep parameter is used to format the strings that need to be printed on the console and add a separator between strings tp be printed. The end parameter is used to append any string at the end of the output of the print statment in python.
Here is a code that demonstrate the print function being use along side tbe sep, and end parameter.