File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ freeing us from having to manually examine every plot for features we've seen be
405405> passed as an argument, that is:
406406>
407407> ~~~
408- > " String" .startswith(" Str" )
408+ > ' String' .startswith(' Str' )
409409> ~~~
410410> {: .language-python}
411411> ~~~
@@ -414,7 +414,7 @@ freeing us from having to manually examine every plot for features we've seen be
414414> {: .output}
415415> But
416416> ~~~
417- > " String" .startswith(" str" )
417+ > ' String' .startswith(' str' )
418418> ~~~
419419> {: .language-python}
420420> ~~~
@@ -484,7 +484,7 @@ freeing us from having to manually examine every plot for features we've seen be
484484> > if char in vowels:
485485> > count += 1
486486> >
487- > > print(" The number of vowels in this string is " + str(count))
487+ > > print(' The number of vowels in this string is ' + str(count))
488488> > ~~~
489489> > {: .language-python}
490490> {: .solution}
You can’t perform that action at this time.
0 commit comments