Skip to content

Commit b39c288

Browse files
authored
Merge pull request StepJes#9 from LuckyChetan/patch-4
Created File
2 parents 8840fbf + 43bcf44 commit b39c288

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

array.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Student_dt = [ [72, 85, 87, 90, 69], [80, 87, 65, 89, 85], [96, 91, 70, 78, 97], [90, 93, 91, 90, 94], [57, 89, 82, 69, 60] ]
2+
#print(student_dt[])
3+
print(Student_dt[1]) # print all elements of index 1
4+
print(Student_dt[0]) # print all elements of index 0
5+
print(Student_dt[2]) # print all elements of index 2
6+
print(Student_dt[3][4]) # it defines the 3rd index and 4 position of the data element.

0 commit comments

Comments
 (0)