当前位置: 首页 > SEO学院SEO知识

python实现得到一个给定类的虚函数

来源:未知 浏览量:133次

现来看看如下代码:

import wx for method in dir(wx.PyPanel): #这里改成给定的类 if method.startswith("base_"): print method

输出的结果为:

python实现得到一个给定类的虚函数

Return True if string starts with theprefix, otherwise returnFalse.prefix can also be a tuple of prefixes to look for. With optionalstart, test string beginning at that position. With optionalend, stop comparing string at that position.

如果string以prefix开头前端技巧官方文档如下:
str.startswith(prefix[,start[,end]])

python实现得到一个给定类的虚函数

如果string以prefix开头函数返回True.

展开全部内容