วันอาทิตย์ที่ 25 ตุลาคม พ.ศ. 2558

[LAB6] Display student records (data)

def setup():
   names = [ "art", "bird", "cat"]
   student_id = [ 22, 24,17]
   ages = [ 17, 18, 19]
   weights = [ 48, 53, 51]
   heights = [ 174, 168, 181]
   show_student(names,student_id,ages,weights,heights)
 
def show_student(names,student_id,ages,weights,heights):
   i = 0
   while(i < len(names)):
      print("Name :",names[i])
      print("Id :",student_id[i])
      print("Age :",ages[i])
      print("Weight :",weights[i])
      print("Height :",heights[i])
      print()
      i = i + 1
 
setup()

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

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