我是Python的新手,但我必须在学校实现Python语言的命令行解释器,但我有点迷失在如何做到这一点.
我已经阅读了一些教程并创建了一个名为functions.py的简单文件,其中包含一些简单的函数,如下所示:
def delete(loc):
if os.path.exists(loc) == True:
os.remove(loc)
print "Removed"
else:
print "File not exists"
现在..这里是东西..为了使用这个我必须在python命令解释器中导入它,就像…
import functions
functions.delete("file to delete")
我怎样才能创建一个Shell / CLI,而不必编写所有这些,我可以这样写:
delete file_name
谢谢!
最佳答案
或者如果你想要一个cmd shell,你可以使用cmd lib.它提供了用于创建命令行的python接口.
http://docs.python.org/library/cmd.html
原文链接:https://www.f2er.com/python/439544.htmlhttp://docs.python.org/library/cmd.html