You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're really exited that you're about to contribute to the [open curriculum](https://learn.co/content-license) on [Learn.co](https://learn.co). If this is your first time contributing, please continue reading to learn how to make the most meaningful and useful impact possible.
4
+
5
+
## Raising an Issue to Encourage a Contribution
6
+
7
+
If you notice a problem with the curriculum that you believe needs improvement
8
+
but you're unable to make the change yourself, you should raise a Github issue
9
+
containing a clear description of the problem. Include relevant snippets of
10
+
the content and/or screenshots if applicable. Curriculum owners regularly review
11
+
issue lists and your issue will be prioritized and addressed as appropriate.
12
+
13
+
## Submitting a Pull Request to Suggest an Improvement
14
+
15
+
If you see an opportunity for improvement and can make the change yourself go
16
+
ahead and use a typical git workflow to make it happen:
17
+
18
+
* Fork this curriculum repository
19
+
* Make the change on your fork, with descriptive commits in the standard format
20
+
* Open a Pull Request against this repo
21
+
22
+
A curriculum owner will review your change and approve or comment on it in due
23
+
course.
24
+
25
+
# Why Contribute?
26
+
27
+
Curriculum on Learn is publicly and freely available under Learn's
28
+
[Educational Content License](https://learn.co/content-license). By
29
+
embracing an open-source contribution model, our goal is for the curriculum
30
+
on Learn to become, in time, the best educational content the world has
31
+
ever seen.
32
+
33
+
We need help from the community of Learners to maintain and improve the
34
+
educational content. Everything from fixing typos, to correcting
35
+
out-dated information, to improving exposition, to adding better examples,
36
+
to fixing tests—all contributions to making the curriculum more effective are
Yea, Mr. Vandelay may not be the best person to get to know or the best at designing business cards, but like Mr. Vandelay, we know that people misenter information on forms all the time.
20
+
Yeah, Mr. Vandelay may not be the best person to get to know or the best at designing business cards, but like Mr. Vandelay, we know that people enter incorrect information on forms all the time.
21
21
22
22
So as data scientists, we often need to clean and organize data before we can make sense of it. Let's get to work.
23
23
@@ -75,7 +75,7 @@ Next, write a method that answers a question about our email addresses. Every e
75
75
"art.vandelay@vandelay.co"# False
76
76
```
77
77
78
-
As you can see below, the website "vandelay.com" is not preceded by `"www."`. We can perform what is called string interpolation to fix this! Use the plus sign, `'+'`, to change the website `'vandelay.com'` to the string `'www.vandelay.com'` by prepending `'www.'`.
78
+
As you can see below, the website "vandelay.com" is not preceded by `"www."`. We can perform what is called string concatenation to fix this! Use the plus sign, `'+'`, to change the website `'vandelay.com'` to the string `'www.vandelay.com'` by prepending `'www.'`.
79
79
80
80
81
81
```python
@@ -84,7 +84,7 @@ As you can see below, the website "vandelay.com" is not preceded by `"www."`. We
84
84
85
85
### Working with numbers
86
86
87
-
Finally, Mr. Vandelay gave us his phone number, but he actually has two other phone numbers that are different from the one listed. All three numbers are basically the same with the excepion of the ending. Below, start by coercing the first phone number, which is currently a string, to an `int` and add one. Next do the same to the second phone number but increase it by two.
87
+
Finally, Mr. Vandelay gave us his phone number, but he actually has two other phone numbers that are different from the one listed. All three numbers are basically the same with the exception of the ending. Below, start by coercing the first phone number, which is currently a string, to an `int` and add one. Next do the same to the second phone number but increase it by two.
88
88
89
89
90
90
```python
@@ -98,4 +98,4 @@ Finally, Mr. Vandelay gave us his phone number, but he actually has two other ph
98
98
99
99
### Summary
100
100
101
-
Our first lab is done! Sweet. In this lab, we practiced working with string methods to operate on and answer questions about strings. We wrote methods that return Booleans and changed strings to intergers in order to perform addition. So much of working with data is ensuring that it is properly formatted so we can then operate on it, and in this lab, we saw how to use code to do just that.
101
+
Our first lab is done! Sweet. In this lab, we practiced working with string methods to operate on and answer questions about strings. We wrote methods that return Booleans and changed strings to integers in order to perform addition. So much of working with data is ensuring that it is properly formatted so we can then operate on it, and in this lab, we saw how to use code to do just that.
Copy file name to clipboardExpand all lines: index.ipynb
+9-9
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@
57
57
"cell_type": "markdown",
58
58
"metadata": {},
59
59
"source": [
60
-
"Yea, Mr. Vandelay may not be the best person to get to know or the best at designing business cards, but like Mr. Vandelay, we know that people misenter information on forms all the time.\n",
60
+
"Yeah, Mr. Vandelay may not be the best person to get to know or the best at designing business cards, but like Mr. Vandelay, we know that people enter incorrect information on forms all the time.\n",
61
61
"\n",
62
62
"So as data scientists, we often need to clean and organize data before we can make sense of it. Let's get to work. "
63
63
]
@@ -211,7 +211,7 @@
211
211
"cell_type": "markdown",
212
212
"metadata": {},
213
213
"source": [
214
-
"As you can see below, the website \"vandelay.com\" is not preceded by `\"www.\"`. We can perform what is called string interpolation to fix this! Use the plus sign, `'+'`, to change the website `'vandelay.com'` to the string `'www.vandelay.com'` by prepending `'www.'`."
214
+
"As you can see below, the website \"vandelay.com\" is not preceded by `\"www.\"`. We can perform what is called string concatenation to fix this! Use the plus sign, `'+'`, to change the website `'vandelay.com'` to the string `'www.vandelay.com'` by prepending `'www.'`."
215
215
]
216
216
},
217
217
{
@@ -237,7 +237,7 @@
237
237
"cell_type": "markdown",
238
238
"metadata": {},
239
239
"source": [
240
-
"Finally, Mr. Vandelay gave us his phone number, but he actually has two other phone numbers that are different from the one listed. All three numbers are basically the same with the excepion of the ending. Below, start by coercing the first phone number, which is currently a string, to an `int` and add one. Next do the same to the second phone number but increase it by two."
240
+
"Finally, Mr. Vandelay gave us his phone number, but he actually has two other phone numbers that are different from the one listed. All three numbers are basically the same with the exception of the ending. Below, start by coercing the first phone number, which is currently a string, to an `int` and add one. Next do the same to the second phone number but increase it by two."
241
241
]
242
242
},
243
243
{
@@ -273,27 +273,27 @@
273
273
"cell_type": "markdown",
274
274
"metadata": {},
275
275
"source": [
276
-
"Our first lab is done! Sweet. In this lab, we practiced working with string methods to operate on and answer questions about strings. We wrote methods that return Booleans and changed strings to intergers in order to perform addition. So much of working with data is ensuring that it is properly formatted so we can then operate on it, and in this lab, we saw how to use code to do just that."
276
+
"Our first lab is done! Sweet. In this lab, we practiced working with string methods to operate on and answer questions about strings. We wrote methods that return Booleans and changed strings to integers in order to perform addition. So much of working with data is ensuring that it is properly formatted so we can then operate on it, and in this lab, we saw how to use code to do just that."
0 commit comments