Skip to content

Commit bbfa2f4

Browse files
committed
Code Update
1 parent 6dc84b7 commit bbfa2f4

File tree

3 files changed

+1191
-26
lines changed

3 files changed

+1191
-26
lines changed

Module 1 - Python Programming/2. Data Structures/data_types.ipynb

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,11 @@
126126
},
127127
{
128128
"cell_type": "code",
129-
"execution_count": 8,
129+
"execution_count": 4,
130130
"metadata": {},
131131
"outputs": [],
132132
"source": [
133-
"# s = 'CipherSchools'\n",
133+
"# s = 'ThatAIGuy'\n",
134134
"\n",
135135
"# print(s[-9])\n",
136136
"\n",
@@ -163,19 +163,19 @@
163163
},
164164
{
165165
"cell_type": "code",
166-
"execution_count": 9,
166+
"execution_count": 5,
167167
"metadata": {},
168168
"outputs": [],
169169
"source": [
170170
"# # Strings are Immutable\n",
171171
"\n",
172-
"# s = 'Cipherschools'\n",
172+
"# s = 'ThatAIguy'\n",
173173
"\n",
174174
"# print(s)\n",
175175
"\n",
176176
"# print(s[6])\n",
177177
"\n",
178-
"# s[6] = 'S'\n",
178+
"# s[6] = 'G'\n",
179179
"\n",
180180
"# print(s)"
181181
]
@@ -532,19 +532,19 @@
532532
},
533533
{
534534
"cell_type": "code",
535-
"execution_count": 46,
535+
"execution_count": 1,
536536
"metadata": {},
537537
"outputs": [
538538
{
539539
"name": "stdout",
540540
"output_type": "stream",
541541
"text": [
542-
"(1, 'Python', 1.2, 'CipherSchools')\n"
542+
"(1, 'Python', 1.2, 'ThatAIGuy')\n"
543543
]
544544
}
545545
],
546546
"source": [
547-
"t = (1, 'Python', 1.2, 'CipherSchools')\n",
547+
"t = (1, 'Python', 1.2, 'ThatAIGuy')\n",
548548
"\n",
549549
"print(t)"
550550
]
@@ -570,30 +570,30 @@
570570
},
571571
{
572572
"cell_type": "code",
573-
"execution_count": 1,
573+
"execution_count": 2,
574574
"metadata": {},
575575
"outputs": [],
576576
"source": [
577577
"# t = (1)\n",
578578
"\n",
579579
"# print(type(t))\n",
580580
"\n",
581-
"# t = ('CipherSchools')\n",
581+
"# t = ('ThatAIGuy')\n",
582582
"\n",
583583
"# print(type(t))"
584584
]
585585
},
586586
{
587587
"cell_type": "code",
588-
"execution_count": 2,
588+
"execution_count": 3,
589589
"metadata": {},
590590
"outputs": [],
591591
"source": [
592592
"# t = 1,2\n",
593593
"\n",
594594
"# print(type(t))\n",
595595
"\n",
596-
"# t = 'CipherSchools',2\n",
596+
"# t = 'ThatAIGuy',2\n",
597597
"\n",
598598
"# print(type(t))"
599599
]
@@ -1157,7 +1157,7 @@
11571157
"name": "python",
11581158
"nbconvert_exporter": "python",
11591159
"pygments_lexer": "ipython3",
1160-
"version": "3.7.6"
1160+
"version": "3.8.5"
11611161
}
11621162
},
11631163
"nbformat": 4,

0 commit comments

Comments
 (0)