[Tutor] Any 'graphical' ways of learning Python

Adam Eyring adameyring at gmail.com
Wed Dec 5 09:02:21 EST 2018


I've liked turtle and make my graphing more interesting by asking for user
input such as dimensions, then graph automatically.

One starter source for using pygame graphics is
https://inventwithpython.com/pygame/
It jumps into game writing very quickly, but provides explanations of
commands.

The one I'm working on now is using the arcade library developed by a
python college professor:
http://arcade.academy
Many many examples of code (including videos of student projects) are
provided to help you write games that resemble many of our favorites.


On Wed, Dec 5, 2018, 3:40 AM Alan Gauld via Tutor <tutor at python.org> wrote:

> On 05/12/2018 00:39, Matthew Polack wrote:
>
> > Can anyone recommend any ways of integrating 'graphics' but in a simpler
> > way.
> >
>
> Have you considered the turtle module.
>
> Its limited to drawing shapes but does give some immediate results.
> You can of course create functions to draw more sophisticated shapes
> etc. And you write the code in an ordinary IDE/editor so its a good
> transition from fully graphical scratch to fully text mode Python.
>
> --
> Alan G
> Author of the Learn to Program web site
> http://www.alan-g.me.uk/
> http://www.amazon.com/author/alan_gauld
> Follow my photo-blog on Flickr at:
> http://www.flickr.com/photos/alangauldphotos
>
>
> _______________________________________________
> Tutor maillist  -  Tutor at python.org
> To unsubscribe or change subscription options:
> https://mail.python.org/mailman/listinfo/tutor
>

On Dec 5, 2018 3:40 AM, "Alan Gauld via Tutor" <tutor at python.org> wrote:

On 05/12/2018 00:39, Matthew Polack wrote:

> Can anyone recommend any ways of integrating 'graphics' but in a simpler
> way.
>

Have you considered the turtle module.

Its limited to drawing shapes but does give some immediate results.
You can of course create functions to draw more sophisticated shapes
etc. And you write the code in an ordinary IDE/editor so its a good
transition from fully graphical scratch to fully text mode Python.


-- 
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos



_______________________________________________
Tutor maillist  -  Tutor at python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor


More information about the Tutor mailing list