“Sistem OS Python” Kode Jawaban

Sistem OS 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 mendapatkan OS

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

Jawaban yang mirip dengan “Sistem OS Python”

Pertanyaan yang mirip dengan “Sistem OS Python”

Lebih banyak jawaban terkait untuk “Sistem OS Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya