python经典面试题

2021-07-10 21:07

阅读:549

标签:分享   com   经典   的区别   alt   soscw   区别   func   elf   

1、方法和函数的区别

from types import MethodType,FunctionType
class  A:
    def func(self):pass
a = A().func
b = A.func
print(isinstance(a,FunctionType))
print(isinstance(b,FunctionType))
print(isinstance(a,MethodType))
print(isinstance(b,MethodType))

技术分享图片

2、生成器相关

def test():
    for i in range(4):
        yield i
def add(n,i):
    return n+i
g=test()
for n in [1,10]:
    g=(add(n,i) for i in g)
print(list(g))

 技术分享图片

 

def test():
    for i in range(4):
        yield i
def add(n,i):
    return n+i
g=test()
for n in [1,10]:
    h=(add(n,i) for i in g)
print(list(h))

技术分享图片

 

python经典面试题

标签:分享   com   经典   的区别   alt   soscw   区别   func   elf   

原文地址:https://www.cnblogs.com/linshuhui/p/9552656.html


评论


亲,登录后才可以留言!