Skip to content

Commit 3699556

Browse files
committed
Update
1 parent 1fd964d commit 3699556

File tree

4 files changed

+34
-4
lines changed

4 files changed

+34
-4
lines changed

.ipynb_checkpoints/DS_Tuples-checkpoint.ipynb

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@
105105
"15. sum\n",
106106
"16. max\n",
107107
"17. min\n",
108-
"18. enumerate"
108+
"18. enumerate\n",
109+
"20. zip"
109110
]
110111
},
111112
{
@@ -218,6 +219,20 @@
218219
"### Output:\n",
219220
"Output is printed using for loop"
220221
]
222+
},
223+
{
224+
"cell_type": "markdown",
225+
"metadata": {},
226+
"source": [
227+
"## Variable length argument Tuples:"
228+
]
229+
},
230+
{
231+
"cell_type": "markdown",
232+
"metadata": {},
233+
"source": [
234+
"## Gather vs Scatter:"
235+
]
221236
}
222237
],
223238
"metadata": {

.ipynb_checkpoints/Functions-checkpoint.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@
443443
"source": [
444444
"#### 4. Variable Length Arguments:\n",
445445
"Args that are used when the number of arguments is not known.\n",
446-
"The arguments passed are stored as a tuple."
446+
"The arguments passed are stored as a tuple. The arguments that start with ' * ' indicate Variable length arguments and are called **gather**"
447447
]
448448
},
449449
{

DS_Tuples.ipynb

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@
105105
"15. sum\n",
106106
"16. max\n",
107107
"17. min\n",
108-
"18. enumerate"
108+
"18. enumerate\n",
109+
"20. zip"
109110
]
110111
},
111112
{
@@ -218,6 +219,20 @@
218219
"### Output:\n",
219220
"Output is printed using for loop"
220221
]
222+
},
223+
{
224+
"cell_type": "markdown",
225+
"metadata": {},
226+
"source": [
227+
"## Variable length argument Tuples:"
228+
]
229+
},
230+
{
231+
"cell_type": "markdown",
232+
"metadata": {},
233+
"source": [
234+
"## Gather vs Scatter:"
235+
]
221236
}
222237
],
223238
"metadata": {

Functions.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@
443443
"source": [
444444
"#### 4. Variable Length Arguments:\n",
445445
"Args that are used when the number of arguments is not known.\n",
446-
"The arguments passed are stored as a tuple."
446+
"The arguments passed are stored as a tuple. The arguments that start with ' * ' indicate Variable length arguments and are called **gather**"
447447
]
448448
},
449449
{

0 commit comments

Comments
 (0)