Re: [Tutor] Abs

2015-07-29 Thread Alan Gauld
On 29/07/15 09:51, Alan Gauld wrote: On 29/07/15 04:28, Job Hernandez wrote: How is it going tutors? You only sent it to me. Please use Reply All to include the list. My mistake, you sent it to the list too. For some reason my mailer didn't show the tutor header... Its in a new thread now.

Re: [Tutor] Abs

2015-07-29 Thread Alan Gauld
On 29/07/15 04:28, Job Hernandez wrote: How is it going tutors? You only sent it to me. Please use Reply All to include the list. The following problem seems impossible to me: "*Write a program that asks the user to enter an integer and prints two integers, /root /and /pwr/, such that 0 <

Re: [Tutor] Abs

2015-07-27 Thread Chris Roy-Smith
On 27/07/15 11:06, Job wrote: I want to be able to ask a user to input an integer and print out the root and power of the given integer. Why do you use abs(x) for this program? I don't understand or see the link between abs() and root and powers. This reminds me of this: By knowing that when

Re: [Tutor] Abs

2015-07-27 Thread Alan Gauld
On 27/07/15 02:06, Job wrote: I want to be able to ask a user to input an integer and print out the root and power of the given integer. Why do you use abs(x) for this program? You don't need to, and I'm not sure why you think you do? I assume it says something about it in your assignment des

Re: [Tutor] abs beginner first project

2006-07-13 Thread Alan Gauld
> Also, when I reply to a message, should I 'cc:' to [EMAIL PROTECTED], add > an extra 'to:' field with [EMAIL PROTECTED], or change the original 'to:' > field to [EMAIL PROTECTED] > What is the difference between 'cc:' and 'to:'? To indicates the primary recipient, CC is a carbon copy for info

Re: [Tutor] abs beginner first project

2006-07-12 Thread Luke Paireepinart
Michael Lange wrote: [snip awesomeness with lambda] > so the callback actually "knows" which widget called it, and you could easily > perform > different actions for several buttons. > > I know that is not what this thread is about, I just could not resist... > > Michael >

Re: [Tutor] abs beginner first project

2006-07-12 Thread John Fouhy
On 12/07/06, josip <[EMAIL PROTECTED]> wrote: > > Hi! > > I have finished learning python book and python for absolute beginners book. > Now I want to start my first project. > > Can someone sugest me project for first time (and some pointers,please)? Do you listen to music on your computer? You

Re: [Tutor] abs beginner first project

2006-07-12 Thread Alan Gauld
>> I'm thinking about text editor. > GUIs aren't the most Pythonic thing you could find to write. Text editor != GUI Many of the most interesting text editors are not GUI bsased and in fact there is a gap(IMHO) at the moment for a really good batch oriented text editor(*) - sed is OK but it is r

Re: [Tutor] abs beginner first project

2006-07-12 Thread Michael Lange
On Wed, 12 Jul 2006 06:48:44 -0500 Luke Paireepinart <[EMAIL PROTECTED]> wrote: > For example, in Tkinter, you can bind buttons to function calls, but you > can't have buttons pass arguments to the functions. So you have to > somehow make a separate function for each button, or do some weird >

Re: [Tutor] abs beginner first project

2006-07-12 Thread Luke Paireepinart
josip wrote: > Hi! > > I have finished learning python book and python for absolute beginners > book. > Now I want to start my first project. > > Can someone sugest me project for first time (and some pointers,please)? > > I'm thinking about text editor. > > Thanks people! GUIs aren't the