Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
print [1].append(2)が None と評価されるのはなぜですか? 私が期待する[1,2]
print [1].append(2)
[1,2]
>>> print [1].append(2) None
これは、append が何も返さないためです (= None)。
None
array.append追加した配列を返すのではなく、 を返しますNone。
array.append