“Zugang zu CMD mit Python” Code-Antworten

Zugang zu CMD mit Python

>>> import subprocess
>>> proc = subprocess.Popen('cmd.exe', stdin = subprocess.PIPE, stdout = subprocess.PIPE)
>>> stdout, stderr = proc.communicate('dir c:\\')
>>> stdout
'Microsoft Windows [Version 6.1.7600]\r\nCopyright (c) 2009 Microsoft Corporatio
n.  All rights reserved.\r\n\r\nC:\\Python25>More? '
Logo Fuzzi

So erhalten Sie den Zugang von Python auf CMD

#open you cmd and there type py
C:\Users\acer>py
Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>># Now start coding on cmd
>>>print("Python is easy")
>>>#type exit when you are done coding on cmd
>>> exit()

C:\Users\acer>
Programmer of empires

Ähnliche Antworten wie “Zugang zu CMD mit Python”

Fragen ähnlich wie “Zugang zu CMD mit Python”

Weitere verwandte Antworten zu “Zugang zu CMD mit Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen