可以通过以下几种方法实现:
my_list = [1, 2, ['a', 'b'], 3, 4]
removed_list = my_list.pop(2)
print(removed_list) # 输出 ['a', 'b']
print(my_list) # 输出 [1, 2, 3, 4]
推荐的腾讯云相关产品:云服务器CVM(产品介绍链接:https://cloud.tencent.com/product/cvm)
my_list = [1, 2, ['a', 'b'], 3, 4]
del my_list[2]
print(my_list) # 输出 [1, 2, 3, 4]
推荐的腾讯云相关产品:云数据库Redis(产品介绍链接:https://cloud.tencent.com/product/redis)
my_list = [1, 2, ['a', 'b'], 3, 4]
my_list.remove(['a', 'b'])
print(my_list) # 输出 [1, 2, 3, 4]
推荐的腾讯云相关产品:对象存储COS(产品介绍链接:https://cloud.tencent.com/product/cos)
以上是移除列表中的列表的几种方法,根据具体的需求和场景选择适合的方法即可。
领取专属 10元无门槛券
手把手带您无忧上云