12
a=[1,2,3]
b=[4,5,6]
c=[]
d=[]

これらの2つのステートメントの違いは何ですか?

c[:]=a
d=b[:]

しかし、どちらも同じ結果になります。

cは[1,2,3]、dは[4,5,6]です。

また、機能的に違いはありますか?

4

4 に答える 4

33

c[:] = aこれは、cのすべての要素をaの要素に置き換えることを意味します

>>> l = [1,2,3,4,5]
>>> l[::2] = [0, 0, 0] #you can also replace only particular elements using this 
>>> l
[0, 2, 0, 4, 0]

>>> k = [1,2,3,4,5]
>>> g = ['a','b','c','d']
>>> g[:2] = k[:2] # only replace first 2 elements
>>> g
[1, 2, 'c', 'd']

>>> a = [[1,2,3],[4,5,6],[7,8,9]]
>>> c[:] = a      #creates a shallow copy
>>> a[0].append('foo') #changing a mutable object inside a changes it in c too
>>> a
[[1, 2, 3, 'foo'], [4, 5, 6], [7, 8, 9]]
>>> c
[[1, 2, 3, 'foo'], [4, 5, 6], [7, 8, 9]]

d = b[:]bの浅いコピーを作成し、それをdに割り当てることを意味します。これは次のようになります。d = list(b)

>>> l = [1,2,3,4,5]
>>> m = [1,2,3]
>>> l = m[::-1] 
>>> l
[3,2,1]

>>> l = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
>>> m = l[:] #creates a shallow copy 
>>> l[0].pop(1) # a mutable object inside l is changed, it affects both l and m
2
>>> l
[[1, 3], [4, 5, 6], [7, 8, 9]]
>>> m
[[1, 3], [4, 5, 6], [7, 8, 9]]
于 2012-07-02T16:43:50.970 に答える
4

アシュウィニが言ったこと。:)少し詳しく説明します:

In [1]: a=[1,2,3]

In [2]: b = a

In [3]: c = a[:]

In [4]: b, c
Out[4]: ([1, 2, 3], [1, 2, 3])

In [5]: a is b, a is c
Out[5]: (True, False)

および他の方法:

In [1]: a = [1,2,3]

In [2]: aold = a

In [3]: a[:] = [4,5,6]

In [4]: a, aold
Out[4]: ([4, 5, 6], [4, 5, 6])

In [5]: a = [7,8,9]

In [6]: a, aold
Out[6]: ([7, 8, 9], [4, 5, 6])

何が起こるかわかりますか?

于 2012-07-02T16:50:20.537 に答える
2

大きな違いはありません。 c[:]=aインプレースを参照するリストを更新しますcd=b[:]bのコピーである新しいリストを作成します(4行目で作成した古いリストを忘れます)。ほとんどのアプリケーションでは、配列への他の参照がない限り、違いがわかることはほとんどありません。もちろん、このバージョンでは、すでにc[:]=...リストを用意しておく必要があります。c

于 2012-07-02T16:43:30.790 に答える
2

Ashwiniの回答は、何が起こっているかを正確に説明しています。2つの方法の違いの例をいくつか示します。

a=[1,2,3]
b=[4,5,6]
c=[]
c2=c
d=[]
d2=d

c[:]=a                            # replace all the elements of c by elements of a
assert c2 is c                    # c and c2 should still be the same list
c2.append(4)                      # modifying c2 will also modify c
assert c == c2 == [1,2,3,4]
assert c is not a                 # c and a are not the same list

d=b[:]                            # create a copy of b and assign it to d
assert d2 is not d                # d and d2 are no longer the same list
assert d == [4,5,6] and d2 == []  # d2 is still an empty list
assert d is not b                 # d and b are not the same list
于 2012-07-02T17:01:30.483 に答える