Python 列表的extend函数

2022-05-18 13:39:25 浏览数 (1)

列表的extend函数

功能
  • 将其他列表元组中的元素导入当前列表
用法
  • list.extend(iterable)
参数
  • 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)

0 人点赞