Skip to content

Commit

Permalink
fix typo:close issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffKatzy committed Mar 27, 2018
1 parent 1b0efbf commit b687475
Showing 1 changed file with 55 additions and 16 deletions.
71 changes: 55 additions & 16 deletions index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"email"
Expand All @@ -142,7 +144,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"website = \"vandelay.com\"\n",
Expand Down Expand Up @@ -187,7 +191,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"name = 'Art Vandalay'\n",
Expand All @@ -204,7 +210,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"email\n"
Expand All @@ -227,7 +235,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"\"Send an email to Art Vandalay at '[email protected]' to tell say how nice it was meeting yesterday.\""
Expand All @@ -243,7 +253,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"\"Send an email to \" + name + \" at \" + email + \" to say how nice it was meeting yesterday.\""
Expand Down Expand Up @@ -278,7 +290,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"name # 'Liz Kaplan'"
Expand All @@ -287,7 +301,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"email # '[email protected]'"
Expand All @@ -303,7 +319,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"\"Send an email to \" + name + \" at \" + email + \" to tell him how nice it was meeting him yesterday.\""
Expand Down Expand Up @@ -333,7 +351,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"name"
Expand All @@ -342,7 +362,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"name.upper()"
Expand All @@ -351,7 +373,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"name.title()"
Expand All @@ -378,7 +402,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"name.upper()"
Expand All @@ -394,7 +420,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"name"
Expand All @@ -410,7 +438,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"name = 'Liz Kaplan'\n",
Expand All @@ -428,10 +458,19 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"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",
"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",
"\n",
"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. "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down

0 comments on commit b687475

Please sign in to comment.