Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b687475

Browse files
fix typo:close issue
1 parent 1b0efbf commit b687475

File tree

1 file changed

+55
-16
lines changed

1 file changed

+55
-16
lines changed

‎index.ipynb‎

Lines changed: 55 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@
119119
{
120120
"cell_type": "code",
121121
"execution_count": null,
122-
"metadata": {},
122+
"metadata": {
123+
"collapsed": true
124+
},
123125
"outputs": [],
124126
"source": [
125127
"email"
@@ -142,7 +144,9 @@
142144
{
143145
"cell_type": "code",
144146
"execution_count": null,
145-
"metadata": {},
147+
"metadata": {
148+
"collapsed": true
149+
},
146150
"outputs": [],
147151
"source": [
148152
"website = \"vandelay.com\"\n",
@@ -187,7 +191,9 @@
187191
{
188192
"cell_type": "code",
189193
"execution_count": null,
190-
"metadata": {},
194+
"metadata": {
195+
"collapsed": true
196+
},
191197
"outputs": [],
192198
"source": [
193199
"name = 'Art Vandalay'\n",
@@ -204,7 +210,9 @@
204210
{
205211
"cell_type": "code",
206212
"execution_count": null,
207-
"metadata": {},
213+
"metadata": {
214+
"collapsed": true
215+
},
208216
"outputs": [],
209217
"source": [
210218
"email\n"
@@ -227,7 +235,9 @@
227235
{
228236
"cell_type": "code",
229237
"execution_count": null,
230-
"metadata": {},
238+
"metadata": {
239+
"collapsed": true
240+
},
231241
"outputs": [],
232242
"source": [
233243
"\"Send an email to Art Vandalay at 'art.vandelay@vandelay.com' to tell say how nice it was meeting yesterday.\""
@@ -243,7 +253,9 @@
243253
{
244254
"cell_type": "code",
245255
"execution_count": null,
246-
"metadata": {},
256+
"metadata": {
257+
"collapsed": true
258+
},
247259
"outputs": [],
248260
"source": [
249261
"\"Send an email to \" + name + \" at \" + email + \" to say how nice it was meeting yesterday.\""
@@ -278,7 +290,9 @@
278290
{
279291
"cell_type": "code",
280292
"execution_count": null,
281-
"metadata": {},
293+
"metadata": {
294+
"collapsed": true
295+
},
282296
"outputs": [],
283297
"source": [
284298
"name # 'Liz Kaplan'"
@@ -287,7 +301,9 @@
287301
{
288302
"cell_type": "code",
289303
"execution_count": null,
290-
"metadata": {},
304+
"metadata": {
305+
"collapsed": true
306+
},
291307
"outputs": [],
292308
"source": [
293309
"email # 'liz@ka-plan.com'"
@@ -303,7 +319,9 @@
303319
{
304320
"cell_type": "code",
305321
"execution_count": null,
306-
"metadata": {},
322+
"metadata": {
323+
"collapsed": true
324+
},
307325
"outputs": [],
308326
"source": [
309327
"\"Send an email to \" + name + \" at \" + email + \" to tell him how nice it was meeting him yesterday.\""
@@ -333,7 +351,9 @@
333351
{
334352
"cell_type": "code",
335353
"execution_count": null,
336-
"metadata": {},
354+
"metadata": {
355+
"collapsed": true
356+
},
337357
"outputs": [],
338358
"source": [
339359
"name"
@@ -342,7 +362,9 @@
342362
{
343363
"cell_type": "code",
344364
"execution_count": null,
345-
"metadata": {},
365+
"metadata": {
366+
"collapsed": true
367+
},
346368
"outputs": [],
347369
"source": [
348370
"name.upper()"
@@ -351,7 +373,9 @@
351373
{
352374
"cell_type": "code",
353375
"execution_count": null,
354-
"metadata": {},
376+
"metadata": {
377+
"collapsed": true
378+
},
355379
"outputs": [],
356380
"source": [
357381
"name.title()"
@@ -378,7 +402,9 @@
378402
{
379403
"cell_type": "code",
380404
"execution_count": null,
381-
"metadata": {},
405+
"metadata": {
406+
"collapsed": true
407+
},
382408
"outputs": [],
383409
"source": [
384410
"name.upper()"
@@ -394,7 +420,9 @@
394420
{
395421
"cell_type": "code",
396422
"execution_count": null,
397-
"metadata": {},
423+
"metadata": {
424+
"collapsed": true
425+
},
398426
"outputs": [],
399427
"source": [
400428
"name"
@@ -410,7 +438,9 @@
410438
{
411439
"cell_type": "code",
412440
"execution_count": null,
413-
"metadata": {},
441+
"metadata": {
442+
"collapsed": true
443+
},
414444
"outputs": [],
415445
"source": [
416446
"name = 'Liz Kaplan'\n",
@@ -428,10 +458,19 @@
428458
"cell_type": "markdown",
429459
"metadata": {},
430460
"source": [
431-
"In this lesson, we got a taste for what makes computer programs so powerful. By using variables, we can write programs that know how to combine data. This can save us time by avoiding boring, repetitive tasks. We declare and assign a variable with the pattern of `variable = data`. And reassign a variable with the same pattern. To refernece a variable, we simply type the variable's name. \n",
461+
"In this lesson, we got a taste for what makes computer programs so powerful. By using variables, we can write programs that know how to combine data. This can save us time by avoiding boring, repetitive tasks. We declare and assign a variable with the pattern of `variable = data`. And reassign a variable with the same pattern. To reference a variable, we simply type the variable's name. \n",
432462
"\n",
433463
"We also saw that one of the things to pay attention to when working with variables is that they are sometimes different from what we expect. So we just type the name of the variable, to see what it really is and make the change. "
434464
]
465+
},
466+
{
467+
"cell_type": "code",
468+
"execution_count": null,
469+
"metadata": {
470+
"collapsed": true
471+
},
472+
"outputs": [],
473+
"source": []
435474
}
436475
],
437476
"metadata": {

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /