python—编程实现命令提示符

代码如下:

"""                                                           
# _*_coding:utf-8_*_                                          
Name:cmd.py                                                   
Date:1/14/19                                                  
Author:westos-sql                                             
Connect:[email protected]                                     
Desc:...                                                      
"""                                                           
import os                                                     
while True:                                                   
#for i in range(100):                                         
    cmd = input('[root@python55:~]# ')                        
    if cmd:                                                   
        if cmd == 'exit':                                     
            print('logout')                                   
            break                                             
        else:                                                 
            print('Command is %s' %(cmd))                     
            os.system(cmd)                                    
    else:                                                     
        print('You must enter true Command')                  
        continue                                              

python—编程实现命令提示符_第1张图片

执行结果:
输入正确命令执行,返回结果,若输入exit则退出
在这里插入图片描述

####如果直接回车或者输入错误命令,结果如下:

python—编程实现命令提示符_第2张图片

你可能感兴趣的:(python—编程实现命令提示符)