Answer :

Function for python is print()
In Python, the `print()` function is used for printing output to the console. You can pass one or more values separated by commas to the `print()` function, and it will display those values as output.

Example:
```python
print("Hello, world!")
```

This would output:
```
Hello, world!
```

Other Questions