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
Copy file name to clipboardExpand all lines: _episodes/01-intro.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -137,7 +137,7 @@ o
137
137
>
138
138
> Count the number of Gs in the sequence above using a `for` loop. What is the difference between Python (see above) and R (in solution below) implementations?
Copy file name to clipboardExpand all lines: _episodes/02-datatypes.md
+22-22Lines changed: 22 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -179,7 +179,7 @@ my_list = [0,1,2]
179
179
>
180
180
> Change the value of a single element in `my_list ` and `my_tuple`.
181
181
>
182
-
> > ## Solution: List
182
+
<!-- > > ## Solution: List
183
183
> >
184
184
> > ~~~
185
185
> > my_list[1] = 5
@@ -206,7 +206,7 @@ my_list = [0,1,2]
206
206
> >TypeError: 'tuple' object does not support item assignment
207
207
> > ~~~
208
208
> > {: .output}
209
-
> {: .solution}
209
+
> {: .solution} -->
210
210
{: .challenge}
211
211
212
212
### Assigning Elements of a List or Tuple to New Variables
@@ -393,7 +393,7 @@ for key in numbers2:
393
393
>
394
394
> Try to reassign the second value of `numbers2` (in the *key value pair*) so that it no longer reads "two" but instead reads "spam and eggs". What does your dictionary look like after you make this change?
0 commit comments