0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Python、コロン(:)を使わずにスライスする。a.__getitem__(slice(3,5))。

Last updated at Posted at 2020-10-13

#概要
Pythonにて、コロン(:)を使わずにスライスする方法に辿りついたので、情報共有。
深い意味はありません。
あまり、めぐり合うことがないと思ったので、単なる情報として。

#Python、コロン(:)を使わずにスライスする。やり方。

>>>
>>> a = [10,20,30,40,50,60,70]
>>> a.__getitem__(slice(3,5))
[40, 50]
>>>

スライスも**__getitem__**です。
**slice(3,5)**という書き方、あまり出会わないかも。

#まとめ
特にありません。
別のことを検討していて、出会ったので、記事にしました。
コメントなどあれば、お願いします。
この記事のレベルは、さすがに知ってたという方は、
コメント欄のほうを。。。御覧あれ(他力っ)

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?