File tree Expand file tree Collapse file tree 4 files changed +17
-13
lines changed
Expand file tree Collapse file tree 4 files changed +17
-13
lines changed Original file line number Diff line number Diff line change 1919 "metadata" : {},
2020 "source" : [
2121 " ---\n " ,
22- " ## Strings"
22+ " ## 1. Writing text: Strings"
2323 ]
2424 },
2525 {
5252 "metadata" : {},
5353 "source" : [
5454 " ---\n " ,
55- " ## Asking questions: input()"
55+ " ## 2. Asking questions: input()"
5656 ]
5757 },
5858 {
8585 "metadata" : {},
8686 "source" : [
8787 " ---\n " ,
88- " ## ASCII art: print()"
88+ " ## 3. ASCII art: print()"
8989 ]
9090 },
9191 {
9292 "cell_type" : " markdown" ,
9393 "metadata" : {},
9494 "source" : [
9595 " \n " ,
96- " - Look at the following example and run the cells :"
96+ " - Look at the following example and run the cell :"
9797 ]
9898 },
9999 {
125125 "name" : " python" ,
126126 "nbconvert_exporter" : " python" ,
127127 "pygments_lexer" : " ipython3" ,
128- "version" : " 3.9.13 "
128+ "version" : " 3.9.6 "
129129 },
130130 "widgets" : {
131131 "application/vnd.jupyter.widget-state+json" : {
Original file line number Diff line number Diff line change 8484 {
8585 "cell_type" : " code" ,
8686 "execution_count" : null ,
87- "metadata" : {},
87+ "metadata" : {
88+ "tags" : []
89+ },
8890 "outputs" : [],
8991 "source" : [
9092 " favorite_food = input (\" What is your favorite food?\" )"
9395 {
9496 "cell_type" : " code" ,
9597 "execution_count" : null ,
96- "metadata" : {},
98+ "metadata" : {
99+ "tags" : []
100+ },
97101 "outputs" : [],
98102 "source" : [
99103 " print (\" Hi! My name is \" + name)\n " ,
118122 "name" : " python" ,
119123 "nbconvert_exporter" : " python" ,
120124 "pygments_lexer" : " ipython3" ,
121- "version" : " 3.9.13 "
125+ "version" : " 3.9.6 "
122126 },
123127 "widgets" : {
124128 "application/vnd.jupyter.widget-state+json" : {
Original file line number Diff line number Diff line change 2323 "cell_type" : " markdown" ,
2424 "metadata" : {},
2525 "source" : [
26- " - You are the owner of a bookstore. n the programming shelf there are:"
26+ " - You are the owner of a bookstore. In the programming shelf there are:"
2727 ]
2828 },
2929 {
8989 "name" : " python" ,
9090 "nbconvert_exporter" : " python" ,
9191 "pygments_lexer" : " ipython3" ,
92- "version" : " 3.9.13 "
92+ "version" : " 3.9.6 "
9393 },
9494 "widgets" : {
9595 "application/vnd.jupyter.widget-state+json" : {
Original file line number Diff line number Diff line change 309309 " elif operator == \" *\" :\n " ,
310310 " result = first_number * second_number\n " ,
311311 " elif operator == \" **\" :\n " ,
312- " result = first_number / second_number\n " ,
313- " elif operator == \" /\" :\n " ,
314312 " result = first_number ** second_number\n " ,
313+ " elif operator == \" /\" :\n " ,
314+ " result = first_number / second_number\n " ,
315315 " elif operator == \" //\" :\n " ,
316316 " result = first_number // second_number \n " ,
317317 " elif operator == \" %\" : \n " ,
400400 "name" : " python" ,
401401 "nbconvert_exporter" : " python" ,
402402 "pygments_lexer" : " ipython3" ,
403- "version" : " 3.11.4 "
403+ "version" : " 3.9.6 "
404404 },
405405 "widgets" : {
406406 "application/vnd.jupyter.widget-state+json" : {
You can’t perform that action at this time.
0 commit comments