1

私はたまにPythonを使用しますが、一見些細な質問でごめんなさい

>>> a = set(((1,1),(1,6),(6,1),(6,6)))
>>> a
set([(6, 1), (1, 6), (1, 1), (6, 6)])
>>> a - set(((1,1)))
set([(6, 1), (1, 6), (1, 1), (6, 6)])
>>> a.remove((1,1))
>>> a
set([(6, 1), (1, 6), (6, 6)])

なぜ' -'演算子は要素を削除しなかったが、削除したのremoveですか?

4

2 に答える 2

8

カンマを逃したため:

>>> set(((1,1)))
set([1])

する必要があります:

>>> set(((1,1),))
set([(1, 1)])

または、読みやすくするために:

set([(1,1)])

または(Py2.7 +):

{(1,1)}
于 2012-10-07T06:19:45.553 に答える
2

1つの要素のタプルを指定しようとしたときに、コンマを見逃しました。タプルの構文は確かにややトリッキーです...

  • タプルは、括弧ではなくコンマを使用して作成されます
  • 場合によっては、かっこを追加する必要があります
  • ただし、空のタプルは空の括弧のペアで表されます
  • カンマで区切られた0個以上の式を囲む括弧のペアがタプルであるとは限りません

いくつかの例

w = 1, 2, 3             # creates a tuple, no parenthesis needed
w2 = (1, 2, 3)          # works too, like x+y is the same as (x+y)
x, y, z = w             # unpacks a tuple
k0 = ()                 # creates an empty tuple
k1 = (1,)               # a tuple with one element (note the comma)
k = (1)                 # just a number, NOT a tuple
foo(1, 2, 3)            # call passing three numbers, not a tuple
bar((1, 2, 3))          # call passing a tuple
if x in 1, 2:           # syntax error, parenthesis are needed
   pass
for x in 1, 2:          # ok here
   pass
gen = (x for x in 1, 2) # error, parenthesis needed here around (1, 2)
于 2012-10-07T06:43:33.140 に答える