diff --git a/tutorials/EP04/Quickstart-for-Python-in-30-minutes.md b/tutorials/EP04/Quickstart-for-Python-in-30-minutes.md
index 363aa47..9f8cf92 100644
--- a/tutorials/EP04/Quickstart-for-Python-in-30-minutes.md
+++ b/tutorials/EP04/Quickstart-for-Python-in-30-minutes.md
@@ -1,7 +1,7 @@
# 30min速成Python指南
Table of Contents
-
+
## 一、为什么要学习Python
@@ -45,7 +45,7 @@ Python有五个标准的数据类型:
- Numbers(数字)
- String(字符串)
- List(列表)
-- Tuple(元祖)
+- Tuple(元组)
- Dictionary(字典)
也支持多种运算符操作,按照优先级排列如下:
@@ -517,9 +517,9 @@ a
-#### Tuples(元祖)
+#### Tuples(元组)
-元祖和列表类似,但是元祖的元素不能修改,创建以后不能改变。
+元组和列表类似,但是元组的元素不能修改,创建以后不能改变。
```python
@@ -542,7 +542,7 @@ employee[0] = "John"
TypeError: 'tuple' object does not support item assignment
-- 元祖切分
+- 元组切分
```python
@@ -569,7 +569,7 @@ employee[1:3]
-- 元祖相加
+- 元组相加
```python
@@ -586,7 +586,7 @@ tuple3
-- 元祖和列表转化
+- 元组和列表转化
```python
@@ -601,9 +601,9 @@ list(tuple1)
-因为元祖是不可变序列,所以很多对列表适用的方法对元祖并不是适用,但元祖也有两个内置的方法:
-- tuple.count():统计元祖中出现元素的数量
-- tuple.index():输出元祖中某个元素的索引index,如果元祖中不存在,会报ValueError
+因为元组是不可变序列,所以很多对列表适用的方法对元组并不是适用,但元组也有两个内置的方法:
+- tuple.count():统计元组中出现元素的数量
+- tuple.index():输出元组中某个元素的索引index,如果元组中不存在,会报ValueError
```python
@@ -957,7 +957,7 @@ print (next(it)) # 输出迭代器的下一个元素
```python
-# 元祖
+# 元组
tuple_a=(1,2,3,4)
it = iter(tuple_a)
print (next(it)) # 输出迭代器的下一个元素