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

Lab 5 : Display elements (value) of array and its index

def setup():
   i = 0
   n = [5,6,7,9,5,18,4]
   while(i<len(n)):
      print("Index ",i," = ",n[i])
      i = i+1

setup()

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

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