You can use the socket module in Python to get the system hostname. Here's an example:

import socket
hostname = socket.gethostname()
print("Hostname:", hostname)

This will print the hostname of the machine that the Python script is running on.