วันอังคารที่ 16 สิงหาคม พ.ศ. 2559

Class Object Method of Python.

def setup():
   a = Student("Frame", 173, 58, 32080, 20)
   b = Student("Bank", 168, 60, 20071, 19)
   c = Student("Pee", 166, 54, 20054, 20)
   d = Student("Fern", 165, 53, 20097, 19)
 
   a.display()
   print()
   b.display()
   print()
   c.display()
   print()
   d.display()
   print()

class Student:
   def __init__(self,name,height,weight,ID,age):
      self.name = name
      self.height = height
      self.weight = weight
      self.ID = ID
      self.age = age
   def display(self):
         print("Name", self.name)
         print("Height", self.height)
         print("Weight", self.weight)
         print("ID", self.ID)
         print("Age", self.age)
 
setup()

ไม่มีความคิดเห็น:

แสดงความคิดเห็น

Link Video Presentation Resort Managemant System Project.

Video Presentation Resort Managemant System Project. จัดทำโดย พากษ์เสียง: คุณาสิน  ทองมณี  5801012620011 ลำดับภาพ: สุพิชชา  ศรีศิริ...