Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

os system python

# importing os module 
import os 
  
# Command to execute
# Using Windows OS command
cmd = 'date'
  
# Using os.system() method
os.system(cmd)
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #os #system #python
ADD COMMENT
Topic
Name
6+2 =