You don't have javascript enabled. Good luck! :(

This is a test

You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run jekyll serve, which launches a web server and auto-regenerates your site when a file is updated.

To add new posts, simply add a file in the _posts directory that follows the convention YYYY-MM-DD-name-of-post.ext and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.

Jekyll also offers powerful support for code snippets:

def print_hi(name)
  puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.

Check out the Jekyll docs for more info on how to get the most out of Jekyll. File all bugs/feature requests at Jekyll’s GitHub repo. If you have questions, you can ask them on Jekyll Talk.

  Jun 20, 2018     WenYuan     Python3  UPDATE:

[Python] 學習使用數組 (Tuple)

Python 的數組 (Tuple) 跟串列 (List) 很類似, 但是他們兩者有以下幾點不同:

  1. 數組的元素值不可以更改
  2. 在數組中不可以刪除個別元素或取代數組中的資料 (要刪除也只能把整個數組元素都刪掉)
  3. 數組不能使用 appendinsert 來加入新元素, 但可以使用 + 來加入新元素或者使用 * 來複製元素


宣告與建立數組 (Tuple)

tuple1 = () # 建立空數組
tuple2 = (2, 4, 7, 5, 3, 3) # 以數值建立數組
tuple3 = tuple('Hello World') # 以字串建立數組

# 以串列建立數組
tuple4 = tuple([i for i in range(1, 10)])

print(tuple1)
print(tuple2)
print(tuple3)
print(tuple4)


數組可使用的函式

數組 (Tuple) 也可以使用串列所使用的函式, 例如: len() , max() , min() , sum()

tuple1 = () # 建立空數組
tuple2 = (2, 4, 7, 5, 3, 3) # 以數值建立數組
tuple3 = tuple('Hello World') # 以字串建立數組

# 以串列建立數組
tuple4 = tuple([i for i in range(1, 10)])

print(len(tuple3)) # 印出 tuple3 的長度
print(max(tuple2)) # 印出 tuple2 的最大值
print(min(tuple2)) # 印出 tuple2 的最小值
print(sum(tuple4)) # 印出 tuple4 的數值總和


判斷元素是否存在於數組中

可以使用 innot in 運算子來判斷該元素是否存在於數組中

tuple1 = () # 建立空數組
tuple2 = (2, 4, 7, 5, 3, 3) # 以數值建立數組
tuple3 = tuple('Hello World') # 以字串建立數組

# 以串列建立數組
tuple4 = tuple([i for i in range(1, 10)])

print(2 in tuple2)
print('H' not in tuple3)
print(9 in tuple4)

innot in 成立時會回傳 True , 不成立時則回傳 False


在數組中添加新元素

數組不能使用串列的 append 以及 insert 來添加新元素, 數組必須使用 + 來添加新元素, 如下所示:

tuple1 = ()
tuple2 = (2, 4, 7, 5, 3, 3)

# 在 tuple1 中加入元素 1, 2, 3 
tuple1 += (1, 2, 3)

# 在 tuple2 中加入元素 20
tuple2 += (20,)

print(tuple1)
print(tuple2)

注意: 只連結一個元素時, 要在後面加上逗號, 如上面程式第 8 行所示

此外, 數組與串列一樣也可以使用 * 來複製, 如下所示:

tuple1 = ()
tuple2 = (2, 4, 7, 5, 3, 3)

# 在 tuple1 中加入元素 1, 2, 3 
tuple1 += (1, 2, 3)

# 在 tuple2 中加入元素 20
tuple2 += (20,)

print(tuple1)
print(tuple2)

# 多複製一次 tuple2
tuple3 = tuple2 * 2

print(tuple3)


利用索引來擷取元素

數組與串列相同, 都可以使用索引 (Index) 來擷取特定元素, 如下所示:

tuple1 = ()
tuple2 = (2, 4, 7, 5, 3, 3)

# 在 tuple1 中加入元素 1, 2, 3 
tuple1 += (1, 2, 3)

# 在 tuple2 中加入元素 20
tuple2 += (20,)

# 多複製一次 tuple2
tuple3 = tuple2 * 2

print(tuple1[1])
print(tuple3[3:6])
print(tuple2[-1])
print(tuple3[2:])

當然也可以使用 for 迴圈來印出數組資料

tuple1 = ()
tuple2 = (2, 4, 7, 5, 3, 3)

# 在 tuple1 中加入元素 1, 2, 3 
tuple1 += (1, 2, 3)

# 在 tuple2 中加入元素 20
tuple2 += (20,)

# 多複製一次 tuple2
tuple3 = tuple2 * 2

print(tuple1[1])
print(tuple3[3:6])
print(tuple2[-1])
print(tuple3[2:])

for i in tuple2:
	print(i, end = ' ')


刪除數組內容

數組不可以刪除特定或單一元素, 也無法修改值, 只能透過 del刪除整個數組的資料

tuple1 = ()
tuple2 = (2, 4, 7, 5, 3, 3)

tuple1 += (1, 2, 3)
tuple2 += (20,)

tuple3 = tuple2 * 2

del tuple3 # 刪除 tuple3