Metadata-Version: 1.1
Name: macoop
Version: 0.0.1
Summary: Create For Learing Only!!
Home-page: https://github.com/maxmonamimai/
Author: MC CHAKKRAPONG
Author-email: furbierecords2@gmail.com
License: MIT
Download-URL: https://github.com/maxmonamimai/macoop/archive/v0.0.1.zip
Description: (MACOOP) สำหรับเรียนรู้พัฒนาระบบ
        ================================
        
        โปรแกรมนี้ใช้ทดสอบระบบเท่านั้น!!
        
        วิธีติดตั้ง
        ~~~~~~~~~~~
        
        เปิด CMD / Terminal
        
        .. code:: python
        
            pip install macoop
        
        Day 0
        =====
        
        ::
        
            allstudent = []
        
            teacher1 = Teacher('Ada Lovelace')
            teacher2 = Teacher('Bill Gates')
            print(teacher1.students)
        
        
        
        
            #Day 1
            print('----------Day 1 --------')
            St1 = Student('Albert','Einstein')
            allstudent.append(St1)
            teacher2.AddStudent(St1)
            print(St1.fullname)
        
            print('----------Day 2 --------')
            #Day 2
            St2 = Student('Steve','Jobs')
            allstudent.append(St2)
            teacher2.AddStudent(St1)
            print(St2.fullname)
        
            #Day 3
            print('----------Day 3 --------')
            for i in range(3):
                St1.Codeing()
        
            St2.Codeing()
            St1.ShowExp()
            St2.ShowExp()
        
            #Day 4
            print('----------Day 4 --------')
        
            stp1 = SpecialStudent('Thomas', 'Edison', 'Hitler')
            allstudent.append(stp1)
            teacher1.AddStudent(stp1)
            print(stp1.fullname)
            print('คุณครูครับ ชอคะแนนฟรี 20 คะแนนได้ไหม')
            stp1.exp = 20
            stp1.Codeing()
            stp1.ShowExp()
        
            #Day 5
            print('----------Day 5 --------')
            print('นักเรียนกลีบบ้านกันยังไง')
        
            print(allstudent)
            for st in allstudent:
                print('ผม {} กลับ้านด้วย {} ครับ'.format(st.name, st.vehicle))
                print(isinstance(st,SpecialStudent))
                if isinstance(st,SpecialStudent):
                    st.vehicle.SelfDriving(st)
        
            #Day 6
            print('----------Day 6 --------')
        
        
            teacher1.CheckStudent()
            teacher2.CheckStudent()
        
            print('รวมพลังของนักเรียน 2 คน', St1 + St2)
        
        \`\`\`
        
Keywords: oop,macoop,MC CHAKKRAPONG
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
