2020
10-10
10-10
Python如何实现机器人聊天
今天午休的时候,无意之中看了一篇博客,名字叫Python实现机器人,感觉挺有的意思的。于是用其写了一个简单的Python聊天,源码如下所示:#-*-coding:utf-8-*-importaimlimportsysimportosdefget_module_dir(name):print("module",sys.modules[name])path=getattr(sys.modules[name],'__file__',None)print(path)ifnotpath:raiseAttributeError('module%shasnotattribute__file__'%name)returnos.pa...
继续阅读 >