python的abc
May182009
作者:u2 发布:2009-05-18 22:58 分类:python python的abc已关闭评论
pyhon中很简单的模块调用
#!/usr/bin/python
# Filename: abc.py
def mymo():
print ‘hello world!’
#!/usr/bin/python
# Filename: ehcoabc.py
import abc
abc.mymo()
执行结果如下:
AttributeError: ‘module’ object has no attribute ‘mymo’
原因是abc在python中比较特殊,跟已有的module模块冲突,换一下名字就可以了。
本文固定链接: https://www.2hei.net/2009/05/18/python-module-abc/ | 2hei.net
最活跃的读者