Re: [Tutor] using python shell program on windows

2016-10-17 Thread mpreisig .
Thanks a lot Peter and eryk for these very clear explanations. I was able to install successfully using pip and run the program. Best, Matthias > On Fri, Oct 14, 2016 at 4:52 PM, Peter Otten <__peter__ at web.de> wrote: > > > > python -m pip install timesheet > > > > on the commandline should

Re: [Tutor] Python help

2016-10-17 Thread Andrew Koe
Hi, Also, you have a typo in your elif path == '2' statement. It should be rock = input('Do you want to pick up the rock') with one equal sign not rock == input ('Do you want to pick up the rock'). -Andrew On Sat, Oct 15, 2016 at 6:48 PM, Nicholas Hopkins