Working with Python print() Function
Use Python print() function to display a message to the screen, or any other standard output device. This message can be a string, object or an array.
Syntax
1 | print(object(s), sep=separator, end=end, file=file, flush=flush) |
Example
1 | print("Welcome to Tecadmin.net") |
1 2 | name = "Rahul" print("Hi", name) |