You should be using double quotes on this line and you are missing the last quote:<div><br></div><div><span style>print &#39;You&#39;re not Chris!</span> </div><div><br></div><div>Should be:</div><div><br></div><div><span style>print &quot;You&#39;re not Chris!&quot;</span></div>
<div><br><br><div class="gmail_quote">On Wed, Jan 11, 2012 at 8:17 AM, col speed <span dir="ltr">&lt;<a href="mailto:ajarncolin@gmail.com">ajarncolin@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 11 January 2012 20:11, Max S. &lt;<a href="mailto:maxskywalker1@gmail.com">maxskywalker1@gmail.com</a>&gt; wrote:<br>
&gt; I believe that line 3 raises an error.  The because you contained the text<br>
&gt; in single quotes, and then used the same character in &#39;you&#39;re not chris&#39;,<br>
&gt; Python believes that you are trying to type &quot;you&quot; re not chris&quot;.  You can<br>
&gt; change the single quotes surrounding your string to double quotes (&quot;you&#39;re<br>
&gt; not chris&quot;), triple-single quotes (&#39;&#39;&#39;you&#39;re not chris&#39;&#39;&#39;), or triple-double<br>
&gt; quotes (&quot;&quot;&quot;you&#39;re not chris&quot;&quot;&quot;), or you can tell Python that you want to<br>
&gt; include the apostrophe in your string by preceding it with a \ (&#39;you\&#39;re not<br>
&gt; chris&#39;).  The latter works on the same idea as \n and \t.<br>
&gt;<br>
How didn&#39;t I see that?<br>
It just goes to show a gooddun from a baddun.<br>
Cheers<br>
Col<br>
_______________________________________________<br>
Tutor maillist  -  <a href="mailto:Tutor@python.org">Tutor@python.org</a><br>
To unsubscribe or change subscription options:<br>
<a href="http://mail.python.org/mailman/listinfo/tutor" target="_blank">http://mail.python.org/mailman/listinfo/tutor</a><br>
</blockquote></div><br></div>