Re: [Tutor] simplegui problem

2013-11-01 Thread Srinivas Nyayapati
On Fri, Nov 1, 2013 at 7:27 PM, olatunde Adebayo wrote: > Hi everybody. > I am trying to run a program that has been successfully run on > codeskulptor using window power shell: > The problem is "import simplegui", > How can I access"import simplegui" using powershell > > SimpleGui is a python mo

Re: [Tutor] simplegui problem

2013-11-01 Thread Alan Gauld
On 01/11/13 23:27, olatunde Adebayo wrote: I am trying to run a program that has been successfully run on codeskulptor using window power shell: This list is for people learning Python and its standard library. Neither of the above are part of that, therefore we need more information to help

[Tutor] simplegui problem

2013-11-01 Thread olatunde Adebayo
Hi everybody. I am trying to run a program that has been successfully run on codeskulptor using window power shell: The problem is "import simplegui", How can I access"import simplegui" using powershell thank you Olatunde ___ Tutor maillist - Tutor@py

Re: [Tutor] Positional Arguments

2013-11-01 Thread Alan Gauld
On 01/11/13 18:43, Jenny Allar wrote: but I'm having issues passing values from one function to another. I'm not sure what you are asking. The error is pretty clear and the cause is as described - you don;t pass any arguments to the function... def main(): gethours() print()

Re: [Tutor] Positional Arguments

2013-11-01 Thread Emile van Sebille
The traceback shows: > TypeError: calcandprint() missing 2 required positional arguments: > 'hrswrkd' and 'payrate' and the definition of calcandprint is > def calcandprint (hrswrkd, payrate): which shows it requiring two parameters: 'hrswrkd' and 'payrate' so the proper way to call the func

Re: [Tutor] Positional Arguments

2013-11-01 Thread Mark Lawrence
On 01/11/2013 18:43, Jenny Allar wrote: gethours() #Call the function that gets the hours worked payrate You throw away hrswrkd and payrate from gethours here print() calcandprint() # Call the function that calculates and prints the Then you call calcandprint with no arguments

[Tutor] Positional Arguments

2013-11-01 Thread Jenny Allar
Hi everyone, I'm onto my next assignment and I think I have the basics together, but I'm having issues passing values from one function to another. I'm using Python 3.3.2 on Windows 7 and below is my assignment and code with the error that's got me hung up. Thanks in advance for your help. Assig

Re: [Tutor] load test a web application?

2013-11-01 Thread Mark Lawrence
On 01/11/2013 09:51, Albert-Jan Roskam wrote: Hi, I am looking at three Github-like programs (Stash, Gitbucket and Trac) to see if they could be used in our company. I would like to test the reliability and stability of at least one of them (I won't do any tests if some required functionality

[Tutor] load test a web application?

2013-11-01 Thread Albert-Jan Roskam
Hi, I am looking at three Github-like programs (Stash, Gitbucket and Trac) to see if they could be used in our company. I would like to test the reliability and stability of at least one of them (I won't do any tests if some required functionality is missing). I am curious whether the program