Forum: Python
Dec 13th, 2004, 11:51 PM
|
|
Replies: 10
Views: 734
If you download and install python 2.4 from...
If you download and install python 2.4 from python.org, you get an IDE included in the download. It runs python in a completely seperate application from command prompt, and is much more versetile to...
|
Forum: Python
Dec 13th, 2004, 11:28 PM
|
|
Replies: 5
Views: 712
Actually, Thanks! I was just looking for...
Actually, Thanks! I was just looking for something to change strings to ints. It works like a charm! Now you can have the satisfaction of knowing somebody actually used your code for something! How...
|
Forum: Python
Dec 13th, 2004, 7:06 PM
|
|
Replies: 7
Views: 451
|
Forum: Python
Dec 12th, 2004, 11:04 PM
|
|
Replies: 10
Views: 622
|
Forum: Python
Dec 12th, 2004, 10:55 PM
|
|
Replies: 7
Views: 451
Yes I know! But take this piece of code for...
Yes I know! But take this piece of code for example
>>> a = {'a':1,'b':2,'c':3}
>>> b = a
>>> print a
{'a': 1, 'c': 3, 'b': 2}
>>> b['a'] = 9999
>>> print a
{'a': 9999, 'c': 3, 'b': 2}
|
Forum: Python
Dec 12th, 2004, 7:00 PM
|
|
Replies: 7
Views: 451
|
Forum: Python
Dec 12th, 2004, 4:41 PM
|
|
Replies: 7
Views: 451
Really? Sorry. Didn't see it.
I've made some...
Really? Sorry. Didn't see it.
I've made some progress, I now understand that b=a just makes b another name for a. Unfortunately, I havn't gotten any further than that on how to fix this problem.
b =...
|
Forum: Python
Dec 12th, 2004, 4:00 PM
|
|
Replies: 7
Views: 451
I'm fairly new to python. I am making a simple...
I'm fairly new to python. I am making a simple text 2 player chess game currently. It's working like a charm (I love python's array definitions), but the array is acting wierdly. Here's a snippet of...
|