Thread
:
Python Help![solved]
View Single Post
Dec 13th, 2004, 7:06 PM
#
8
JoeUser
Newbie
Join Date: Dec 2004
Posts: 8
Rep Power:
0
I figured it out. With normal arrays, you create an independent array with
(
Toggle Plain Text
)
arrayA = arrayB[:]
arrayA = arrayB[:]
but with dictionary arrays, use
(
Toggle Plain Text
)
arrayA = arrayB.copy()
arrayA = arrayB.copy()
JoeUser
View Public Profile
Find More Posts by JoeUser