<div dir="ltr">Replies in line below:<br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 18, 2016 at 11:26 AM, Chris Roffey <span dir="ltr"><<a href="mailto:chris@codingclub.co.uk" target="_blank">chris@codingclub.co.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Hi Carrie Anne<div><br></div><div>I was focussing on structure mostly but I was also trying to come up with language that was concise but easy to understand (while being in a rush). I agree this can be improved and will suggest one improvement later but first I will try and explain why it might not be as bad as perhaps it first appears:</div><div><br></div><div>1. Audience: I am not aiming at the slow-typing, just-started-Python, what-is-a-function student. I am aiming at those students who have done a little programming in Python already and are starting to want to explore things further. Your average 12 year old perhaps would be the first ones to start exploring the documentation. These are the interim students / learners. The reason for aiming here is that I think that the younger students need a bit more leading than going off and reading documentation. For the youngsters it is possible to produce a stripped down even easier version of EdDoc that can pop-up in a special IDE, rather than navigating documentation or simply providing Syntax guides. Personally, I believe both kinds of documentation are required but, for me, it is easier to simplify than build up from a simplified start.</div></div></blockquote><div><br></div><div>Your experience of teaching 12 year olds is very different to my experience of teaching 12 year olds. Mine would not start to explore the documentation and even if they did I think they would be completely lost by the language. Many of my best computing students had learning difficulties and reading ages of much younger children. Many just did not like to read, and many did not have a wide vocabulary. State schools are a very different beast to grammar and independent schools in my experience. </div><div><br></div><div>In my opinion, keep it simple should be the mantra, otherwise students may as well refer to the documentation that already exists. We should be demystifying computing jargon!</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><br></div><div>2. Structure: Some of the ease of reading comes from repetitive structure. All functions (in my example system) start with a sentence saying that they are functions and where they come from: So in the example you have chosen, random.choice(), the first sentence is: <i>A function available after importing the built-in random module</i>. </div><div>bin() on the other hand has as its first sentence: <i>A built-in function</i>. </div><div>A Pygame method might have a sentence such as: <i>A method available if Pygame is installed on your computer</i>. </div><div>The second sentence in the description tells you its purpose concisely but is separate (hence on a new line). </div></div></blockquote><div><br></div><div>I love the structure.</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><br></div><div>3. Technical vocab: Students who are starting to read documentation also need to be introduced to technical vocabulary so they can perform effective searches. The amount of this vocab varies and often depends on the difficulty of the function being documented. It is of course possible to use technical language and then further explain it, but the danger is it becomes verbose and many students will not read it.</div></div></blockquote><div><br></div><div>I agree that introducing technical language is important, however be careful not to assume that more words = less likely to read it. If the words are alien and seem to make no sense in a shorter sentence then the danger is that they will not read them. </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><br></div><div>4. How the function page in my suggestion might be read: I envisage many students reading the documentation like this: </div><div><ul><li>'What do I have to put in to this function?' (skip to arguments section)</li><li>'What will I get out of it?' (skip to returns section)</li><li>Then they will either experiment in the shell or think 'I don’t get it’ (skip to the examples)</li><li>'OK, this is useful - how do I get it?' (skip to top) </li></ul></div><div>Hence the repetitive structure, again, aids readability. It is also teachable.</div></div></blockquote><div><br></div><div>Agree. I like the structure and the use case here. </div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><br></div><div>In the example chosen, the second sentence could have been better worded:</div><div><i>Returns a random value from a container data-type. </i>would be better as <i>Returns a random value from a string, a tuple or a list.</i> This is better because it is still concise, avoids ‘container' which is not a universally accepted key word and is specific about which containers it applies to. It would then be possible to delete the note at the bottom. (original page for reference: <a href="http://codingclub.co.uk/EdDoc/built-in_modules/random.choice.html" target="_blank">EdDoc/built-in_modules/random.choice.html</a> )</div><div><br></div><div>Is there a need for both EdDocs and, for want of a better name, SchoolDocs? Am I right to suggest that SchoolDocs would be easy to produce from a well made EdDocs system but doing this the other way round is more difficult?</div></div></blockquote><div><br></div><div>No idea. I think an EdDocs, with content sourced by members of this working group and the wider community would be a good starting point. </div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><br></div><div>Best wishes</div><span class="HOEnZb"><font color="#888888"><div>Chris</div></font></span><div><div class="h5"><div><br></div></div></div></div></blockquote><div><br></div><div>As always, great to discuss our viewpoints,</div><div><br></div><div>Carrie Anne.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><div class="h5"><div></div><div><br></div><div><div><blockquote type="cite"><div>On 18 Jul 2016, at 10:12, Carrie Anne Philbin <<a href="mailto:carrieanne@raspberrypi.org" target="_blank">carrieanne@raspberrypi.org</a>> wrote:</div><br><div><div dir="ltr">I really like this idea Chris. Like you I am not sure if this could be easily incorporated into an IDE but it is something we should consider for the python in edu website. <div><br></div><div>My only reservation is with the language used in the example supplied here <span style="font-size:12.8px"> </span><a href="http://codingclub.co.uk/EdDoc/" style="font-size:12.8px" target="_blank">http://codingclub.co.uk/EdDoc/</a>. I think it is still too high level for young people. Hell, I don't even understand "A function available after importing the built-in random module. Returns a random value from a container data-type." Can we simplify the language for novices? I'm not sure if this was simply because you wanted to share an idea of structure rather than content? If so apologises Chris. </div><div><br></div><div>Any further thoughts anyone? </div><div><br></div><div>Carrie Anne.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jul 15, 2016 at 12:17 PM, Chris Roffey <span dir="ltr"><<a href="mailto:chris@codingclub.co.uk" target="_blank">chris@codingclub.co.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Dear Carrie Anne and Amit<div><br></div><div>I too have been concerned about the Python documentation being too difficult for students to understand.</div><div><br></div><div>To be easy to teach, navigate and to link to in IDEs, the documentation requires a clear and logical structure.</div><div><br></div><div>To be easily understandable and accessible to youngsters, the language in the documentation needs to be concise and clear and with a consistent style. This means, in my mind, that although it can be a community endeavour, it needs an agreed structure first and a good copy-editor at the end.</div><div><br></div><div>To see what this would involve I have had a go and discovered it will be a big job. Well worth sharing!</div><div>I have experimented with a straight html structure but I have no idea if this is the best way of doing this to make it easy to incorporate in IDEs. I suspect XML would be better.</div><div><br></div><div>I have produced a nested index system with plain english descriptions provided all the way through but ending in a single page with a logical name that could be used in IDEs. So, for example, the random.choice() function has its own page with the same headings as other functions and is accessed by navigating through built-in modules then random (which has its own description) then then clicking on the choice() link which has its own description.</div><div><br></div><div>I have not explored classes and their corresponding methods provided by modules built this way because I think it is pretty easy to see how these can follow the same system.</div><div><br></div><div>Anyway, have a look and see what you think: <a href="http://codingclub.co.uk/EdDoc/" target="_blank">http://codingclub.co.uk/EdDoc/</a></div><div>(I have used an obvious link style so you can clearly see where I have provided examples. This is not a comprehensive Documentation set!!)</div><div><br></div><div>Best wishes</div><span><font color="#888888"><div>Chris</div></font></span><div><div><div><br><div><blockquote type="cite"><div>On 13 Jul 2016, at 07:32, Carrie Anne Philbin <<a href="mailto:carrieanne@raspberrypi.org" target="_blank">carrieanne@raspberrypi.org</a>> wrote:</div><br><div><div dir="ltr">This is a great blog by a teacher in Bath who I believe is on this mailing list. I'm sure she can give you a list, but to start with here is <a href="https://codeboom.wordpress.com/2016/05/11/scratch-is-the-new-powerpoint/" target="_blank">the post</a> I was referring to. <div><br></div><div>I hope some teachers will read this and add their requests for good documentation so your offer of help gets snapped up! As Nicholas mentioned, a Python in education website is being formulated. We will need good documentation for it. More details to come!</div><div><br></div><div>Thanks,</div><div><br></div><div>Carrie Anne.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jul 13, 2016 at 5:12 AM, Amit Saha <span dir="ltr"><<a href="mailto:amitsaha.in@gmail.com" target="_blank">amitsaha.in@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>On Wed, Jul 13, 2016 at 3:52 AM, Carrie Anne Philbin<br>
<<a href="mailto:carrieanne@raspberrypi.org" target="_blank">carrieanne@raspberrypi.org</a>> wrote:<br>
> I've been distracted lately by all of the work that the micro-python group<br>
> have been doing to support the BBC micro:bit. Work that continues and needs<br>
> your support.<br>
><br>
> 1. Work is continuing on Mu the learner focused Python IDE. The team would<br>
> really appreciate your thoughts and feedback, especially if you work with<br>
> young people or those new to Python. You can do so here, on another thread<br>
> or on the Microbit-Python mailing list.<br>
><br>
> 2. Support for teachers/learners. If you need support learning python or<br>
> teaching with python then why not start a thread here? A wonderful Python<br>
> community person will help you out. This is a really quick and simply way<br>
> that members can get involved. They want to help you!<br>
><br>
> 3. Lesson plans, tutorials/resources. Have you written any that you want to<br>
> share with others? Then share them here with a new thread. Spread the love!<br>
><br>
> 4. Documentation. Recently CodeBoom wrote a really good blog post about the<br>
> lack of good documentation for python modules that are used in education.<br>
> Could educators on this list, collate their most used modules that need<br>
> documenting for those wanting to get started with them. Could others help<br>
> with this?<br>
<br>
</span>I would be keen to help with the documentation. Can you please point<br>
to the post you are referring to?<br>
<span><br>
<br>
<br>
><br>
> 5. Education bundle. Dan Pope started a thread sharing his progress on this.<br>
> Can you provide feedback, ideas, suggestions, a pat on the back, testing<br>
> opportunities in the future?<br>
<br>
</span>I am looking forward to help with the edu bundle too.<br>
<span><br>
<br>
<br>
><br>
> The moral here is do not let this WG die! Everyone always asks me "how can I<br>
> get involved?" Educators share your success, failures and frustrations.<br>
> Community members share your ideas, solutions and good-will.<br>
><br>
> Thanks,<br>
><br>
> Carrie Anne.<br>
><br>
> --<br>
> Director of Education<br>
> Raspberry Pi Foundation<br>
> UK Charity No. 1129409<br>
><br>
> <a href="http://www.raspberrypi.org/" rel="noreferrer" target="_blank">www.raspberrypi.org</a> | <a href="http://www.codeclub.org.uk/" rel="noreferrer" target="_blank">www.codeclub.org.uk</a><br>
> @ | in | ▷<br>
><br>
><br>
><br>
</span><div><div>> _______________________________________________<br>
> Pythonedu-wg mailing list<br>
> <a href="mailto:Pythonedu-wg@python.org" target="_blank">Pythonedu-wg@python.org</a><br>
> <a href="https://mail.python.org/mailman/listinfo/pythonedu-wg" rel="noreferrer" target="_blank">https://mail.python.org/mailman/listinfo/pythonedu-wg</a><br>
><br>
<br>
<br>
<br>
</div></div><span><font color="#888888">--<br>
<a href="http://echorand.me/" rel="noreferrer" target="_blank">http://echorand.me</a><br>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <br><div data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr">Director of Education</div><div dir="ltr">Raspberry Pi Foundation</div><div dir="ltr"><span style="font-size:12.8px">UK Charity No. 1129409</span></div><div dir="ltr"><span style="font-size:12.8px"><br></span></div><div dir="ltr"><span><div style="font-size:12.8px"><a href="http://www.raspberrypi.org/" style="color:rgb(17,85,204);font-size:12.8px" target="_blank">www.raspberrypi.org</a><span style="font-size:12.8px"> </span><span style="font-size:12.8px">| <a href="http://www.codeclub.org.uk/" target="_blank">www.codeclub.org.uk</a></span></div><div style="font-size:12.8px"><a href="http://twitter.com/missphilbin" style="color:rgb(17,85,204)" target="_blank">@</a><span style="font-size:12.8px"> | <a href="https://uk.linkedin.com/in/carrie-anne-philbin-a20649b7" style="color:rgb(17,85,204)" target="_blank">in</a> | </span><a href="https://www.youtube.com/user/GeekGurlDiaries" style="color:rgb(17,85,204);font-size:x-small;font-family:arial" target="_blank"><b>▷</b></a><br></div><font><br><br></font></span></div></div></div></div></div></div>
</div>
_______________________________________________<br>Pythonedu-wg mailing list<br><a href="mailto:Pythonedu-wg@python.org" target="_blank">Pythonedu-wg@python.org</a><br><a href="https://mail.python.org/mailman/listinfo/pythonedu-wg" target="_blank">https://mail.python.org/mailman/listinfo/pythonedu-wg</a><br></div></blockquote></div><br></div></div></div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr">Director of Education</div><div dir="ltr">Raspberry Pi Foundation</div><div dir="ltr"><span style="font-size:12.8px">UK Charity No. 1129409</span></div><div dir="ltr"><span style="font-size:12.8px"><br></span></div><div dir="ltr"><span><div style="font-size:12.8px"><a href="http://www.raspberrypi.org/" style="color:rgb(17,85,204);font-size:12.8px" target="_blank">www.raspberrypi.org</a><span style="font-size:12.8px"> </span><span style="font-size:12.8px">| <a href="http://www.codeclub.org.uk/" target="_blank">www.codeclub.org.uk</a></span></div><div style="font-size:12.8px"><a href="http://twitter.com/missphilbin" style="color:rgb(17,85,204)" target="_blank">@</a><span style="font-size:12.8px"> | <a href="https://uk.linkedin.com/in/carrie-anne-philbin-a20649b7" style="color:rgb(17,85,204)" target="_blank">in</a> | </span><a href="https://www.youtube.com/user/GeekGurlDiaries" style="color:rgb(17,85,204);font-size:x-small;font-family:arial" target="_blank"><b>▷</b></a><br></div><font><br><br></font></span></div></div></div></div></div></div>
</div>
</div></blockquote></div><br></div></div></div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr">Director of Education</div><div dir="ltr">Raspberry Pi Foundation</div><div dir="ltr"><span style="color:rgb(0,0,0);font-size:12.8px">UK Charity No. 1129409</span></div><div dir="ltr"><span style="color:rgb(0,0,0);font-size:12.8px"><br></span></div><div dir="ltr"><span><div style="font-size:12.8px"><a href="http://www.raspberrypi.org/" style="color:rgb(17,85,204);font-size:12.8px" target="_blank">www.raspberrypi.org</a><span style="font-size:12.8px"> </span><span style="font-size:12.8px">| <a href="http://www.codeclub.org.uk" target="_blank">www.codeclub.org.uk</a></span></div><div style="font-size:12.8px"><a href="http://twitter.com/missphilbin" style="color:rgb(17,85,204)" target="_blank">@</a><span style="font-size:12.8px"> | <a href="https://uk.linkedin.com/in/carrie-anne-philbin-a20649b7" style="color:rgb(17,85,204)" target="_blank">in</a> | </span><a href="https://www.youtube.com/user/GeekGurlDiaries" style="color:rgb(17,85,204);font-size:x-small;font-family:arial" target="_blank"><b>▷</b></a><br></div><font color="#000000"><br><br></font></span></div></div></div></div></div></div>
</div></div>