From bad501ace45ed0d5d21936880fc611a7c7499de0 Mon Sep 17 00:00:00 2001 From: Sidhant Bhavnani Date: Wed, 21 Oct 2015 02:43:02 +0530 Subject: [PATCH 1/2] Added Online Python Tutor I found this tool helpful when I started to learn how to code and I thought that this should be on the list. --- docs/intro/learning.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/intro/learning.rst b/docs/intro/learning.rst index ba4a959..fa91704 100644 --- a/docs/intro/learning.rst +++ b/docs/intro/learning.rst @@ -30,7 +30,13 @@ If you want a more traditional book, *Python For You and Me* is an excellent resource for learning all aspects of the language. `Python for You and Me `_ +Online Python Tutor: a basic understanding of how your code will run +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +pythontutor.com is an easy way to get introduced to Python and programming in general. +In Python Tutor you will see a visual step by step representation of how your program runs. +Python Tutor helps people overcome a fundamental barrier to learning programming by understanding what happens as the computer executes each line of a program's source code. + `Online Python Tutor `_ Invent Your Own Computer Games with Python ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From 6897ba37cd381e7fbe63a1940ab2ff1fce186f09 Mon Sep 17 00:00:00 2001 From: Sidhant Bhavnani Date: Wed, 21 Oct 2015 15:25:33 +0530 Subject: [PATCH 2/2] Made edits to Online Python Tutor --- docs/intro/learning.rst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/intro/learning.rst b/docs/intro/learning.rst index fa91704..475e43f 100644 --- a/docs/intro/learning.rst +++ b/docs/intro/learning.rst @@ -30,12 +30,16 @@ If you want a more traditional book, *Python For You and Me* is an excellent resource for learning all aspects of the language. `Python for You and Me `_ -Online Python Tutor: a basic understanding of how your code will run + +Online Python Tutor ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -pythontutor.com is an easy way to get introduced to Python and programming in general. -In Python Tutor you will see a visual step by step representation of how your program runs. -Python Tutor helps people overcome a fundamental barrier to learning programming by understanding what happens as the computer executes each line of a program's source code. +Online Python Tutor gives you a visual step by step +representation of how your program runs. Python Tutor +helps people overcome a fundamental barrier to learning +programming by understanding what happens as the computer +executes each line of a program's source code. + `Online Python Tutor `_ Invent Your Own Computer Games with Python