python은 주어진 클래스의 허함수를 실현합니다

1285 단어
본고의 실례는python이 주어진 종류의 허함수를 실현하는 방법을 설명하여 여러분에게 참고하도록 공유합니다.구체적으로 다음과 같다.
이제 다음 코드를 살펴보겠습니다.

import wx 

for method in dir(wx.PyPanel):   #         
  if method.startswith("base_"): 
    print method 


결과 출력:

base_AcceptsFocus
base_AcceptsFocusFromKeyboard
base_AddChild
base_DoGetBestSize
base_DoGetClientSize
base_DoGetPosition
base_DoGetSize
base_DoGetVirtualSize
base_DoMoveWindow
base_DoSetClientSize
base_DoSetSize
base_DoSetVirtualSize
base_Enable
base_GetDefaultAttributes
base_GetMaxSize
base_InitDialog
base_OnInternalIdle
base_RemoveChild
base_ShouldInheritColours
base_TransferDataFromWindow
base_TransferDataToWindow
base_Validate 


또 하나의 자주 사용하는str 방법을 첨부합니다. 공식 문서는 다음과 같습니다:str.startswith (prefix [,start [,end]) Return True if string starts with theprefix,otherwise return False.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로 시작되면 함수가 True를 반환합니다.
본고에서 서술한 것이 여러분의 파이톤 프로그램 설계에 도움이 되었으면 합니다.

좋은 웹페이지 즐겨찾기