Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix bug #585

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 06_Day_Tuples/06_tuples.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ A tuple is a collection of different data types which is ordered and unchangeabl
- tuple(): to create an empty tuple
- count(): to count the number of a specified item in a tuple
- index(): to find the index of a specified item in a tuple
- + operator: to join two or more tuples and to create a new tuple
- `+` operator: to join two or more tuples and to create a new tuple

### Creating a Tuple

Expand Down
2 changes: 1 addition & 1 deletion Chinese/06_tuples.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
- tuple():创建一个空元组
- count():计算元组中指定项的数量
- index():查找元组中指定项的索引
- + 运算符:连接两个或多个元组并创建一个新元组
- `+` 运算符:连接两个或多个元组并创建一个新元组

### 如何创建元组

Expand Down