博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Python] Python list slice syntax fun
阅读量:5162 次
发布时间:2019-06-13

本文共 483 字,大约阅读时间需要 1 分钟。

# Python's list slice syntax can be used without indices# for a few fun and useful things:# You can clear all elements from a list:>>> lst = [1, 2, 3, 4, 5]>>> del lst[:]>>> lst[]# You can replace all elements of a list# without creating a new list object:>>> a = lst>>> lst[:] = [7, 8, 9]>>> lst[7, 8, 9]>>> a[7, 8, 9]>>> a is lstTrue# You can also create a (shallow) copy of a list:>>> b = lst[:]>>> b[7, 8, 9]>>> b is lstFalse

 

转载于:https://www.cnblogs.com/Answer1215/p/7999357.html

你可能感兴趣的文章
HDU 4960 Handling the past 2014 多校9 线段树
查看>>
时间管理-未经思考的人生不值得过
查看>>
cf 749D Leaving Auction
查看>>
[习题]验证控件(Validator)搭配 当地语系(Localization)
查看>>
XidianOJ 1213 小V的滑板鞋
查看>>
2017-2018-1 20155313 《信息安全系统设计基础》第八周课下作业2
查看>>
nginx的缓存设置提高性能
查看>>
C基础--单链表的构造
查看>>
光标定位、模糊查询
查看>>
获取Android控件ListView中被选中的某一列的值
查看>>
UVA 11374 Airport Express 机场快线 Dijistra+路径
查看>>
UIWebView 无缝切换到 WKWebView
查看>>
【python小练】0002
查看>>
【Django】不知道为什么就是想学一下 01
查看>>
C# Single Instance WinForms and Microsoft.VisualBasic.dll
查看>>
Query String模块和http小爬虫和events模块和fs模块和stream模块
查看>>
NOIP前的水题记录
查看>>
python:python之禅
查看>>
isKindOf和isMemberOf的区别
查看>>
深入浅出了解frame和bounds
查看>>