「Python」スライスで文字列を抽出するサンプル
構文
変数名「start:end」
startを省略すると先頭から、endを省略すると末尾までの範囲となります。
使用例
# coding: utf-8 #!/usr/bin/python3 cftVar = 'Hello World!' print ("文字列の更新 : ", cftVar[:6] + 'arkgame')
実行結果
>python 101.py
文字列の更新 : Hello arkgame
Coding Changes the World
構文
変数名「start:end」
startを省略すると先頭から、endを省略すると末尾までの範囲となります。
使用例
# coding: utf-8 #!/usr/bin/python3 cftVar = 'Hello World!' print ("文字列の更新 : ", cftVar[:6] + 'arkgame')
実行結果
>python 101.py
文字列の更新 : Hello arkgame