Every time I start cmd on windows it requires me to "set
path=%path%;C:\python26" why? I'm getting annoyed...
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
I need to some how make a script that logs into a website from my desktop
and I can do the rest and grab the information on my on hopefully. How
would I login to a website using sockets with python?
___
Tutor maillist - Tutor@python.org
http://mail.pyt
Command prompt is a pain and it would be pretty nice to have this feature.
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
Wow I just got it, and its nice doesn't even look used god damn. :D.
On 9/14/07, Lamonte Harris <[EMAIL PROTECTED]> wrote:
>
> Lol, you bought it, dude theres not one left imho. When I bought it, it
> still said 1 More left Lol...mines should be her no less then a hour -.-
Right, I like reading books it comes handier then reading ebooks, less
programs and its right there in your hands. Main reason I'm going to use it
for is to find questions without asking them on the python list or tutor
list for a quicker referrence.
On 9/14/07, [EMAIL PROTECTED] <[EMAIL PROTECT
http://www.powells.com/biblio/63-9780596001889-7 Used, has anyone read this
book. Any additional information that you like,dislike about this book? [I
like having real books and stead of ebooks because its better on the eyes.]
Should be her 2morrow Afternoon :), few hours before I get home great
See theres a lot of words that I know and some that I don't know, how can I
extend and improve my python vocabulary so I can interpret information in a
faster manor. Makes things easier to understand if you actually understand
the things the people are saying in tutorials,etc..
___
Okay
class A:
def __init__(self,x,y):
self.x = x
self.y = y
def save(self,fn):
f = open(fn,"w")
f.write(str(self.x)+ '\n') # convert to a string and add newline
f.write(str(self.y)+'\n')
return f # for child objects to use
def restore(self, fn):