1
0

More than 3 years have passed since last update.

python3 任意の文字を抽出する(記録)

Posted at

スペース区切りの2つの整数と、文字列が入力されるので、2つの整数の範囲の部分文字列を出力してください。

a,b = input().split()

a = int(a)-1
b = int(b)

st = input()

print(st[a:b])

入力例2
2 6
Welcome to the paiza! I`m studying ruby!

出力例2
elcom

1
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
1
0