#最初の定義
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]
Go to list of users who liked
More than 3 years have passed since last update.
#最初の定義
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]
Register as a new user and use Qiita more conveniently
Go to list of users who liked