Guest User

Untitled

a guest
Feb 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #建立空的Array
  2. arr = []
  3.  
  4. #加入元素
  5. arr.append("str")
  6. arr.append(3)
  7. arr.append(-1)
  8.  
  9. #印出array中所有值
  10. print("Result: ",arr)
  11. #Result: ['str', 3, -1]
  12.  
  13. #印出特定index的值
  14. print("Result: ", arr[0])
  15. #Result: str
  16.  
  17. #矩陣長度
  18. print("Result: ",len(arr))
  19. # Result: 3
Add Comment
Please, Sign In to add comment