python 归纳 _python组织方式

Posted sunzebo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 归纳 _python组织方式相关的知识,希望对你有一定的参考价值。

结论:

xxx.yyyy
yyyy 可以是 类、类对象、函数、变量
xxx  可以是 包、模块、类

代码:

ref1.py

# -*- coding: utf-8 -*-
import os

class abccc(object):
    def f(self,a):
        print a
c = abccc
d = abccc()
e = 5
def f(a):
    print "aa" + a

test1.py

# -*- coding: utf-8 -*-
"""
xxx.yyyy
yyyy 可以是 类、类对象、函数、变量
xxx  可以是 包、模块、类
"""
import  ref1

print type(ref1.abccc)
print ref1.e
ref1.f("6")

ref1.d.f("8")

e = ref1.c()
print type(e)
print type(ref1.e)
e.f("dd")

输出:

<type type>
5
aa6
8
<class ref1.abccc>
<type int>
dd

后续 :

验证 xxx 是否可以 函数、方法

 

推测:

zzzzz.xxx.yyyy(_,_,..)
xxx 可以是 包、模块、类、类对象
? 函数

以上是关于python 归纳 _python组织方式的主要内容,如果未能解决你的问题,请参考以下文章

python之模块和包

python 归纳 _多进程_基本使用

python 归纳 _线程_threading.Thread

python package 的两种组织方式

python 归纳 (二四)_多进程数据共享和同步_锁Lock&RLock

python 归纳 _并发队列Queue的使用