소스 검색

test classes

tsteuer 5 년 전
부모
커밋
cde7ea0209
2개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      Animals/Birds.py
  2. 1 0
      Animals/__init__.py

+ 11 - 0
Animals/Birds.py

@@ -0,0 +1,11 @@
+class Birds:
+    def __init__(self):
+        ''' Constructor for this class. '''
+        # Create some member animals
+        self.members = ['Sparrow', 'Robin', 'Duck']
+ 
+ 
+    def printMembers(self):
+        print('Printing members of the Birds class')
+        for member in self.members:
+           print('\t%s ' % member)

+ 1 - 0
Animals/__init__.py

@@ -0,0 +1 @@
+from Birds import Birds