import os
os.system('ls')
The output will be the file and directory listing from the ls command.
This can also be used to execute another python script, assuming the script calling the os.system function is in the same directory as the python script that will be called.
import os
os.system('python example.py')
The script example.py will execute as if it was called on the command line.