Python Array.arrayの特定の要素のインデックス(index)を取得するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
#arr=対象のArray.array, item=要素
result = arr.index(item) ...
Python インデックスを使ってリストの値を取得するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
#ls=対象のリスト
for i in range(0, len(ls), 2):
#ループ処理 ...
Python map()を使って配列の全要素に値を足すサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
#ls=対象のリスト, value=全要素に足す値
result = list(map(lambda x: x ...
Python Numpy配列(ndarray)の全要素に値を足すサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
#arr=対象のNumpy配列, value=足す値
result = arr + value
「+」の ...
Python 辞書の値をタプルに変換するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
tuple()を呼び出します。
tuple()の引数で、辞書のvalues()を呼び出します。
resu ...
Python random小数の乱数を範囲付きで生成するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
randomをインポートします。
import random
random.uniform()のように、 ...
Python Tuple(タプル)をSetに変換するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
set()を呼び出します。
set()の引数にTupleを指定します。
cft_set = set(cf ...
Python numpyで数値の累乗を取得するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
numpyをインポートします。
import numpy
numpy.power()のように、numpy ...
Python 数値の10の位を四捨五入するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
result = round(number, -2)
round()は、第1引数の数値の10の位を四捨五入した値 ...
Python リスト(List)の末尾からN個の要素を取得するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
#N=取得する要素数
lastN = list
リスト(List)の末尾からN個の要素を取得するには、ス ...
Python matplotlibグラフに最大値と最小値を設定するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
#min=最小値、max=最大値
plt.xlim(min, max)
pyplot.plot()でグラ ...
Python 2次元リストの合計値を取得するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
#my_list=対象のリスト
res = sum(map(sum, my_list))
sum()を呼 ...
Python 内包表記でリストを奇数だけにするサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
内包表記でリストをforループし、ループ変数を返します。
#ls=対象のリスト
res =
if ...
Python AWS SDK バケットでバージョニングを有効にするサンプル
環境
Python3.9
AWS SDK
概要
1.バケットを作成する
bucket = s3.create_bucket(
Bucket=bucket_name,xxx ...
Python Numpy配列(ndarray)の全要素に値を加算するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
result = Numpy配列名 + 足す値
Numpy配列(ndarray)の全要素に値を足すには、「+」を ...
Python delステートメントでリストの末尾の要素を削除するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
del リスト変数名
delステートメントを使ってリストの末尾の要素を削除します。
使用例
n ...Python matplotlib棒グラフの積み上げ棒の色を設定するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
1.matplotlibのpyplotをインポートします
import matplotlib.pyplot as ...
Python スライシングを使ってリストの末尾の要素を削除するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
リスト変数名 =リスト変数名
スライシングを利用してリストの末尾の要素を削除します。
使用例 ...