列表的extend函数
功能
用法
参数
iterable
代表列表或元组 , 该函数无返回值
注意事项
- 传入的必须是
iterable
- 直接传入字符串的话会被拆分成很多个单个字符
- 不可传入整形或者布尔类型之类的(不是
iterable
就不行) - 传入
字典
的话只会保留key
的值
代码
代码语言:javascript
复制# coding:utf-8
manhua = []
history = []
code = []
new_manhua = ('a', 'b', 'c')
new_history = ('中国历史', '日本历史', '韩国历史')
new_code = ('python', 'django', 'flask')
manhua.extend(new_manhua)
history.extend(new_history)
code.extend(new_code)
print(manhua, history, code)
history.extend(manhua)
del manhua
print(history)
test = []
# test.extend('abcd')
test.extend({'name': 'dewei', 'age': 33})
# test.extend(True)
print(test)