Python 文字列の終了の位置を指定して最初から取得するサンプル

環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)

構文
文字列[ : 終了位置 ]
最初の文字から「終了位置」までの文字を返します。
最初の1文字目の位置は0です。
区切りのコロンは残します。

使用例

# coding: utf-8

str= 'テスト123'

print(str[ :2])
print(str[ :3])
print(str[ :4])

実行結果
テス
テスト
テスト1

Python

Posted by arkgame