We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8840fbf + 43bcf44 commit b39c288Copy full SHA for b39c288
1 file changed
array.py
@@ -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