From 3e49afc9221f27acdff40e937a42d5344b346d4b Mon Sep 17 00:00:00 2001 From: Sheep-realms <38580457+sheep-realms@users.noreply.github.com> Date: Sun, 11 Aug 2024 21:41:37 +0800 Subject: [PATCH] fix bug --- 06_Day_Tuples/06_tuples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06_Day_Tuples/06_tuples.md b/06_Day_Tuples/06_tuples.md index 8823d23..a03a61d 100644 --- a/06_Day_Tuples/06_tuples.md +++ b/06_Day_Tuples/06_tuples.md @@ -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