“OS -System Python” Code-Antworten

OS -System Python

# importing os module 
import os 
  
# Command to execute
# Using Windows OS command
cmd = 'date'
  
# Using os.system() method
os.system(cmd)
Itchy Impala

Python bekommt OS

>>> import os
>>> os.name
'posix'
>>> import platform
>>> platform.system()
'Linux'
>>> platform.release()
'2.6.22-15-generic'
Shiny Seahorse

Ähnliche Antworten wie “OS -System Python”

Fragen ähnlich wie “OS -System Python”

Weitere verwandte Antworten zu “OS -System Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen