[Lab] Python 語法亂筆記4
<List 的用法>
宣告:
arr = [1,2,3,4,5]
print( arr )
Output:
1 2 3 4 5
對其中一個人運算:
arr[1] *= 4
print( arr )
Output:
1 8 3 4 5
加到最後:
arr.append(7)
print( arr )
Output:
1 8 3 4 5 7
移除:
del( arr[2] )
print( arr )
Output:
1 8 4 5 7
移除(by index):
arr.pop(1)
print( arr )
Output:
1 3 4 5 7
移除(by item):
arr.remove(1)
print( arr )
Output:
8 3 4 5 7
宣告:
arr = [1,2,3,4,5]
print( arr )
Output:
1 2 3 4 5
對其中一個人運算:
arr[1] *= 4
print( arr )
Output:
1 8 3 4 5
加到最後:
arr.append(7)
print( arr )
Output:
1 8 3 4 5 7
移除:
del( arr[2] )
print( arr )
Output:
1 8 4 5 7
移除(by index):
arr.pop(1)
print( arr )
Output:
1 3 4 5 7
移除(by item):
arr.remove(1)
print( arr )
Output:
8 3 4 5 7
留言
張貼留言