Merge branch 'master' of git://github.com/gerroo/Python into gerroo-master

This commit is contained in:
Harshil
2018-11-04 16:04:29 +01:00
9 changed files with 103 additions and 6 deletions

View File

@@ -1,3 +1,3 @@
arr = [10, 20, 30, 40]
arr[1] = 30
arr[1] = 30 # set element 1 (20) of array to 30
print(arr)