1
7sDream 2017-08-17 00:04:39 +08:00
你可以理解成
[1, 2, 3].append(4) = [1, 2, 3, 4] [1, 2, 3].append([4]) = [1, 2, 3, [4]] // 或者报错,如果是 bytes 必须要求每个元素是一个整数 [1, 2, 3].extend([4]) = [1, 2, 3, 4] [1, 2, 3].extend([4]) = Error 因为 4 不可迭代 |
2
zhengzhou1992 2017-08-17 00:14:50 +08:00 1
追加一个和追加一坨的区别
|
3
siteshen 2017-08-17 05:57:27 +08:00
可以用 `help(xxx)` 或者 `print(xxx.__doc__)`,示例:
$ python -c 'print(bytearray().extend.__doc__)' B.extend(iterable int) -> None Append all the elements from the iterator or sequence to the end of B. $ python -c 'print(bytearray().append.__doc__)' B.append(int) -> None Append a single item to the end of B. |