07、Python 教程 - Python中的命令行提示符的实现

使用以下方法即可使用python实现命令行提示符:

import os
# print(os.system('ls'))
# print(os.system('pwd'))
for i in range(1000):
    cmd = input('[test@ ~]$ ]')
    if cmd:
        if cmd == 'exit':
            print('logout')
            break
        else:
            print('run %s' %(cmd))
            运行shell命令
            os.system(cmd)
    else:
        continue