Write a note on print() statement.
Answer:
- Python uses the print() function to output data to the screen.
- The function print() evaluates the expression before displaying it on the screen.
- The print() outputs a complete line and then moves to the next line for subsequent output.
- The syntax for print() is:
print(value)