[Tutor] Problem with Plot Legend

2017-06-13 Thread Stephen P. Molnar
I am using Python3.6 in the Spyder3IDE and have a problem with the legend for a plot. I have attached the pg file. The code (in part) is: import numpy as np from mpl_toolkits.axes_grid1 import host_subplot import mpl_toolkits.axisartist as AA import matplotlib.pyplot as plt import matplotlib.pa

Re: [Tutor] Raspberry pi 2 python help

2017-06-13 Thread Mats Wichmann
On 06/13/2017 08:08 AM, DJ VIN Lom wrote: > Can i create a script to have my pi change to a certian directory > automaticlly after booting. I want it to be in a directory so when i ssh > into it its ready and i dont need to spend time to do it. As well i dont > want to carry a keyboard mouse and mo

Re: [Tutor] Raspberry pi 2 python help

2017-06-13 Thread Alan Gauld via Tutor
On 13/06/17 15:08, DJ VIN Lom wrote: > Can i create a script to have my pi change to a certian directory > automaticlly after booting. You have some serious misconceptions about how the Pi works. The Pi does not have any idea of a "directory" when it boots up. The whole concept of a home director

[Tutor] Free Python Class on Coursera

2017-06-13 Thread leam hall
Hey everyone, There's a free pair of Python classes on Coursera. I'm fixing to take the second one "https://www.coursera.org/learn/program-code"; that starts 26 Jun. If you've been here for a while and learned the basics, now is a good time to up your skills. If you are new here the first of the

Re: [Tutor] Raspberry pi 2 python help

2017-06-13 Thread Francois Dion
"These are not the scripts you are looking for" More seriously, you want to configure your shell. See the linux documentation project, beginner's guide to bash, chapter 3 in particular: http://tldp.org/LDP/Bash-Beginners-Guide/html/index.html Until you login, your shell doesn't even exists, so yo

[Tutor] Raspberry pi 2 python help

2017-06-13 Thread DJ VIN Lom
Can i create a script to have my pi change to a certian directory automaticlly after booting. I want it to be in a directory so when i ssh into it its ready and i dont need to spend time to do it. As well i dont want to carry a keyboard mouse and montor _

Re: [Tutor] Query

2017-06-13 Thread Alan Gauld via Tutor
On 13/06/17 10:09, Muddunuri Mahesh wrote: > Where can i get the perfect tutorials for black scripting using python I'm not sure what you mean by black scripting - and neither does google apparently... Other than that it is a gothic style of typescript font... But the perfect tutorial for anythin

[Tutor] Query

2017-06-13 Thread Muddunuri Mahesh
Where can i get the perfect tutorials for black scripting using python ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] decorators in a class

2017-06-13 Thread Peter Otten
anish singh wrote: > Trying to use decorators in my class. I am calling > build_tree from the main function and i want to increment > the arguments by a constant factor by using decorators. > However as build_tree is a recursive function, I don't want > to call it recursively with increased consta