>>> import platform >>> platform.platform() 'Linux-3.3.0-8.fc16.x86_64-x86_64-with-fedora-16-Verne'
# importing os module import os # Command to execute # Using Windows OS command cmd = 'date' # Using os.system() method os.system(cmd)