[:-1] で、最後の文字を取り除いた文字列を取得することができる。
例
str1 = "こんにちは。" result = str1[:-1] print(result)
結果
こんにちは
雑記
投稿日:
[:-1] で、最後の文字を取り除いた文字列を取得することができる。
str1 = "こんにちは。" result = str1[:-1] print(result)
こんにちは
執筆者:seyanen
関連記事
plt.xlabel と plt.ylabel を使う。 例 import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, …
罫線を出力するには、pyplot.grid を使う。 例 import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, 2 …
python3 で辞書(dict) の for ループでキーと値を取得する
キーと値を取得するには次のようにする。キーは dict のループ、値は dict の values() のループで取得できる。 例 mydictionary = {‘color’: ‘白’, ‘ani …
python3 でカンマの入った数値の文字列を数値に変換する方法
replace と int 変換を組み合わせる。 例 str1 = ‘1,234,567’ int1 = int(str1.replace(‘,’,”)) print(int1) 結果 123456 …
python3 でリストの偶数番目・奇数番目の項目を出力する
リストに対して、::2 を使えば良い。 例 list1 = [‘日’,’月’,’火’,’水’,’木’,’金’,’土’] list2 = list1[::2] list3 = list1[1::2] p …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。