由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - python得问题
相关主题
foo = bar if bar else {} 這種語法真的惡心到家如何取一个list的第i个element
请教显示object name的问题(c++)请教 C++ std::list iterator 对 template class pointer 的应用问题
BT实战什么时候需要调用STL container的destructor?
python这语言最垃圾的都是 动不动就idention errorPython擂台:算24点
请教exception handling的python问题问个python问题
你们一般都用什么json的lib?javascript问题,怎么让浏览器下载一个文件不是直接打开? (转载)
一道编程题 - throw ExceptionsC++ exception handling 一问
两个class的交叉引用问题Two questions about handling exceptions in C++
相关话题的讨论汇总
话题: mylist话题: did话题: true话题: python
进入Programming版参与讨论
1 (共1页)
a***a
发帖数: 92
1
myList2ndPartLen=myList[-1]
每次都说myList[-1] out of range 是怎么回事?这个不是表示myList里面最后一个元
素的么?新手。。。
a**a
发帖数: 416
2
你确定它非空?

【在 a***a 的大作中提到】
: myList2ndPartLen=myList[-1]
: 每次都说myList[-1] out of range 是怎么回事?这个不是表示myList里面最后一个元
: 素的么?新手。。。

a***a
发帖数: 92
3
非空

【在 a***a 的大作中提到】
: myList2ndPartLen=myList[-1]
: 每次都说myList[-1] out of range 是怎么回事?这个不是表示myList里面最后一个元
: 素的么?新手。。。

r****t
发帖数: 10904
4
肯定是空的。

【在 a***a 的大作中提到】
: 非空
L*******r
发帖数: 1011
5
拿最后一个元素是 mylist[-1:]

【在 a***a 的大作中提到】
: myList2ndPartLen=myList[-1]
: 每次都说myList[-1] out of range 是怎么回事?这个不是表示myList里面最后一个元
: 素的么?新手。。。

w****i
发帖数: 964
6
both work

【在 L*******r 的大作中提到】
: 拿最后一个元素是 mylist[-1:]
L*******r
发帖数: 1011
7
hehe. true.

【在 w****i 的大作中提到】
: both work
r****t
发帖数: 10904
8
|1> a = []
|2> a[-1]
w****i
发帖数: 964
9
True, they are not identical for [], but [] is not the last element of []
either
BTW, [-1:] is about twice slower than [-1] for non-empty list
r****t
发帖数: 10904
10

This is exactly why [][-1] raises an Exception instead of returns [] as the result.
I did not know that. Did you benchmark it to get this conclusion?

【在 w****i 的大作中提到】
: True, they are not identical for [], but [] is not the last element of []
: either
: BTW, [-1:] is about twice slower than [-1] for non-empty list

w****i
发帖数: 964
11
sure, the speed difference between [-1] and [-1:] is not hard to test
1 (共1页)
进入Programming版参与讨论
相关主题
Two questions about handling exceptions in C++请教exception handling的python问题
C++ Q15: throw你们一般都用什么json的lib?
C++ Exception Question一道编程题 - throw Exceptions
感觉用python的人,属于程序员中的文艺青年那类的两个class的交叉引用问题
foo = bar if bar else {} 這種語法真的惡心到家如何取一个list的第i个element
请教显示object name的问题(c++)请教 C++ std::list iterator 对 template class pointer 的应用问题
BT实战什么时候需要调用STL container的destructor?
python这语言最垃圾的都是 动不动就idention errorPython擂台:算24点
相关话题的讨论汇总
话题: mylist话题: did话题: true话题: python