当前位置: 首页 > 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

该日志由 u2 于2009年05月18日发表在 python 分类下,
原创文章转载请注明: python的abc | 2hei.net

报歉!评论已关闭.