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のスライス記法で大混乱した時用の例集

Last updated at Posted at 2020-05-22

#最初の定義

x=[1,2,3,4,5,6]

#一般

前から

x[1:]
#[2,3,4,5,6]

後ろから

x[:1]
#[1]

#マイナス
前から

x[-1:]
#[6]

後ろから

x[:-1]
#[1,2,3,4,5]

#ゼロ
前から

x[0:]
#[1,2,3,4,5,6]

後ろから

x[:0]
#[]

#オーバー
前から

x[9:]
#[]

後ろから

x[:9]
#[1,2,3,4,5,6]
0
0
0

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?