Re: [Tutor] I have a question plz help

2009-02-20 Thread Alan Gauld
"rev pacce" wrote My mom and I have been trying to hack into the administrator account on our laptop my mom got from her job We don't deal with that kind of hacking on this list. But consider what might happen if you succeed. Suppose Mom's PC develops a fault and her IT people try to go

Re: [Tutor] I have a question plz help

2009-02-19 Thread Kent Johnson
On Thu, Feb 19, 2009 at 8:29 PM, rev pacce wrote: > My mom and I have been trying to hack into the administrator account on our > laptop my mom got from her job awile ago so we can update the computer and > itunes and stuff but we have failed many times. We had a pro hacker from > colorado try and

[Tutor] I have a question plz help

2009-02-19 Thread rev pacce
My mom and I have been trying to hack into the administrator account on our laptop my mom got from her job awile ago so we can update the computer and itunes and stuff but we have failed many times. We had a pro hacker from colorado try and do it and he also failed my mom told me. i dont no if t

Re: [Tutor] I HAVE A QUESTION

2006-03-25 Thread Kent Johnson
Tom Bachik wrote: > all it means is that i have easygui but every time i open it it only > gives me demos is that all it is suppose to do? Or is actually suppose > to teach me how to the boxes it demos because it doesn't You have to write your own program to use easygui. When you run it by itse

Re: [Tutor] I HAVE A QUESTION

2006-03-25 Thread Kent Johnson
Tom Bachik wrote: > des easygui only demo boxes because thats all i can get it todo I don't understand your question. What have you tried? What do you want it to do? The easygui documentation describes the different types of dialog boxes it supports. You will be more likely to get a helpful ans

[Tutor] I HAVE A QUESTION

2006-03-25 Thread Tom Bachik
des easygui only demo boxes because thats all i can get it todo ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] i have a question

2006-03-12 Thread Andrei
Tom Bachik gmail.com> writes: > ok say u want python to ask the user to type a username then password for a game account thats easy but how do u get the information they typed back to you? Depends on the environment you're asking it in. If it's command-line, you're probably using the raw_input f

[Tutor] i have a question

2006-03-10 Thread Tom Bachik
ok say u want python to ask the user to type a username then password for a game account thats easy but how do u get the information they typed back to you? ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] i have a question???

2005-02-03 Thread Jacob S.
Sorry, over paranoid. ;-) Jacob num = num + math.pi/6.0 ## Don't forget .0 or you'll get an integer the division operator returns a float when either of the operands are floats -- in this case math.pi is, so you don't have to worry about passing it 6.0 instead of 6 import math math.pi 3.14159

Re: [Tutor] i have a question???

2005-02-03 Thread Mike Bell
>num = num + math.pi/6.0 ## Don't forget .0 or you'll get an integer the division operator returns a float when either of the operands are floats -- in this case math.pi is, so you don't have to worry about passing it 6.0 instead of 6 >>> import math >>> math.pi 3.1415926535897931 >>> math.

Re: [Tutor] i have a question???

2005-02-03 Thread Jacob S.
From what I understand, range() no longer allows you to use floats as arguments. (Or it gives you a deprication warning) This tutorial must be old. Not the only way, but. import math num = 0 while num <= 2*math.pi: ## Do stuff to figure pi/6 things num = num + math.pi/6.0 ## Don't forget .

Re: [Tutor] i have a question???

2005-02-03 Thread Michael Janssen
[the problem provided by alieks] > >>"EXERCISE 3.9 > >>Use the math library to write a program to print out > >>the sin and cos of numbers from 0 to 2pi in intervals > >>of pi/6. You will need to use the range() function." [Michael] > > You _can_ do the exercise > > with the range function but it

Re: [Tutor] i have a question???

2005-02-03 Thread Pierre Barbier de Reuille
Michael Janssen a écrit : On Thu, 3 Feb 2005 05:53:31 -0800 (PST), alieks laouhe <[EMAIL PROTECTED]> wrote: This is from a tutorial "EXERCISE 3.9 Use the math library to write a program to print out the sin and cos of numbers from 0 to 2pi in intervals of pi/6. You will need to use the range() fun

Re: [Tutor] i have a question???

2005-02-03 Thread Michael Janssen
On Thu, 3 Feb 2005 05:53:31 -0800 (PST), alieks laouhe <[EMAIL PROTECTED]> wrote: > This is from a tutorial > > "EXERCISE 3.9 > Use the math library to write a program to print out > the sin and cos of numbers from 0 to 2pi in intervals > of pi/6. You will need to use the range() function." > >

[Tutor] i have a question???

2005-02-03 Thread alieks laouhe
This is from a tutorial "EXERCISE 3.9 Use the math library to write a program to print out the sin and cos of numbers from 0 to 2pi in intervals of pi/6. You will need to use the range() function." Range won't let me use pi/6 as an incremator is there some other way i can accomplish this task