Skip to content

Commit dc8560a

Browse files
committed
Updates for May 10, 2022 course
1 parent 576c2f4 commit dc8560a

File tree

9 files changed

+21
-29
lines changed

9 files changed

+21
-29
lines changed

PythonFullThrottle/StartHere.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@
4747
"# My Upcoming O'Reilly Live Training Courses\n",
4848
"https://deitel.com/LearnWithDeitel\n",
4949
"\n",
50-
"* **April 26**—Python Data Science Full Throttle \n",
51-
"* **May 10**—Python Full Throttle \n",
5250
"* **May 17**—Python Data Science Full Throttle \n",
5351
"* **June 7**—Python Full Throttle \n",
5452
"* **June 14**—Python Data Science Full Throttle \n",
5553
"* **June 28**—Java Full Throttle \n",
54+
"* **July 5**—Python Full Throttle \n",
55+
"* **July 12**—Python Data Science Full Throttle \n",
5656
"\n",
5757
"My Python courses run every 4-5 weeks and my Java course runs every 7-9 weeks. \n",
5858
"\n",
59-
"Under development: **C++20 Full Throttle** (First offering in July)"
59+
"Under development: **C++20 Full Throttle** "
6060
]
6161
},
6262
{
@@ -86,7 +86,7 @@
8686
"* **Spark Streaming**\n",
8787
"* **Internet of Things (IoT) Streaming Data**\n",
8888
"\n",
89-
"**Next offering is January 25:** https://learning.oreilly.com/attend/python-r-data-science-full-throttle-with-paul-deitel-introductory-ai-big-data-and-cloud-case-studies/0636920289197/0636920064476/"
89+
"**Next offering is May 17:** https://learning.oreilly.com/attend/python-r-data-science-full-throttle-with-paul-deitel-introductory-ai-big-data-and-cloud-case-studies/0636920289197/0636920064476/"
9090
]
9191
},
9292
{

PythonFullThrottle/WrapUp.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@
4747
"# My Upcoming O'Reilly Live Training Courses\n",
4848
"https://deitel.com/LearnWithDeitel\n",
4949
"\n",
50-
"* **April 26**—Python Data Science Full Throttle \n",
51-
"* **May 10**—Python Full Throttle \n",
5250
"* **May 17**—Python Data Science Full Throttle \n",
5351
"* **June 7**—Python Full Throttle \n",
5452
"* **June 14**—Python Data Science Full Throttle \n",
5553
"* **June 28**—Java Full Throttle \n",
54+
"* **July 5**—Python Full Throttle \n",
55+
"* **July 12**—Python Data Science Full Throttle \n",
5656
"\n",
57-
"My Python courses run every 4-5 weeks and my Java course runs every 8-10 weeks. \n",
57+
"My Python courses run every 4-5 weeks and my Java course runs every 7-9 weeks. \n",
5858
"\n",
59-
"Under development: **C++20 Full Throttle** (First offering in July)"
59+
"Under development: **C++20 Full Throttle** "
6060
]
6161
},
6262
{

PythonFullThrottle/ch01/Ch01.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
"name": "python",
213213
"nbconvert_exporter": "python",
214214
"pygments_lexer": "ipython3",
215-
"version": "3.7.10"
215+
"version": "3.9.4"
216216
}
217217
},
218218
"nbformat": 4,

PythonFullThrottle/ch03/Ch03.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
"metadata": {},
222222
"outputs": [],
223223
"source": [
224-
"grade = 55"
224+
"grade = 65"
225225
]
226226
},
227227
{
@@ -230,7 +230,8 @@
230230
"metadata": {},
231231
"outputs": [],
232232
"source": [
233-
"'Passed' if grade >= 60 else 'Failed' # ?: operator in most C-based languages"
233+
"# ?: operator in most C-based languages\n",
234+
"'Passed' if grade >= 60 else 'Failed' "
234235
]
235236
},
236237
{

PythonFullThrottle/ch04/Ch04.ipynb

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
"metadata": {},
189189
"outputs": [],
190190
"source": [
191-
"max('yellow', 'red', 'orange', 'blue', 'green')"
191+
"max('yellow', 'yell', 'red', 'orange', 'blue', 'green')"
192192
]
193193
},
194194
{
@@ -440,7 +440,7 @@
440440
"metadata": {},
441441
"outputs": [],
442442
"source": [
443-
"math.pow(2, 10)"
443+
"math.pow(2, 100)"
444444
]
445445
},
446446
{
@@ -492,7 +492,7 @@
492492
"metadata": {},
493493
"outputs": [],
494494
"source": [
495-
"rectangle_area(5, 10) "
495+
"rectangle_area(5) "
496496
]
497497
},
498498
{
@@ -755,15 +755,6 @@
755755
"### Using Object Identities to Show That Objects Are Passed By Reference"
756756
]
757757
},
758-
{
759-
"cell_type": "code",
760-
"execution_count": null,
761-
"metadata": {},
762-
"outputs": [],
763-
"source": [
764-
"x = 7"
765-
]
766-
},
767758
{
768759
"cell_type": "code",
769760
"execution_count": null,

PythonFullThrottle/ch05/Ch05.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@
755755
"metadata": {},
756756
"outputs": [],
757757
"source": [
758-
"number1, *the_rest, number2 = (1, 2, 3, 4, 5)"
758+
"number1, *the_rest, number = (1, 2, 3, 4, 5)"
759759
]
760760
},
761761
{
@@ -764,7 +764,7 @@
764764
"metadata": {},
765765
"outputs": [],
766766
"source": [
767-
"print(f'{number1} {the_rest} {number2}')"
767+
"print(f'{number1} {the_rest} {number}')"
768768
]
769769
},
770770
{

PythonFullThrottle/ch08/Ch08.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"metadata": {},
7373
"outputs": [],
7474
"source": [
75-
"f'{1000000:x}'"
75+
"f'{1000000:X}'"
7676
]
7777
},
7878
{

PythonFullThrottle/ch09/Ch09.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@
618618
"metadata": {},
619619
"outputs": [],
620620
"source": [
621-
"10 + 7"
621+
"10 * 3"
622622
]
623623
},
624624
{

PythonFullThrottle/ch10/Ch10.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@
682682
"outputs": [],
683683
"source": [
684684
"# change __private_data to _PrivateClass__private_data and see what happens\n",
685-
"my_object._PrivateClass__private_data "
685+
"my_object._PrivateClass__private_data"
686686
]
687687
},
688688
{
@@ -1154,7 +1154,7 @@
11541154
"metadata": {},
11551155
"outputs": [],
11561156
"source": [
1157-
"x"
1157+
"x\n"
11581158
]
11591159
},
11601160
{

0 commit comments

Comments
 (0)