Python

環境
Python 3.9.2
PyCharm 2021.3.3

構文
root = tree.getroot()
for cf in root:
子要素を取得するには、XMLを「g ...

Python

環境
Python 3.9.2
PyCharm 2021.3.3

構文
文字列 in リスト
リストに文字列が含まれる場合True、無い場合Falseを返します。

使用例 ...

Python

環境

Python 3.9.2PyCharm 2021.3.3

構文
リスト名 =
if 文字列 not in リスト名:
「not in」を使ってリスト要素に含まれないか調べます。

使用 ...

Python

環境

Python 3.9.2PyCharm 2021.3.3

構文
リスト型変数.index(検索値)
index関数を使って配列(list)の要素番号を取得します。
値が存在する場合リスト内の位置 ...

Python

環境
Python 3.9.2
PyCharm 2021.3.3

書式
1.Tkクラスを生成します
tkinter.Tk()
2.画面サイズを定義します
geometry(縦 ...

Python

環境
Python 3.9.2
PyCharm 2021.3.3

書式
ファイルタイプ変数名 =
filedialog.askopenfilenames(filetypes = ファイルタイ ...

Python

環境
Python 3.9.2
PyCharm 2021.3.3

書式
ファイルタイプ変数名 =
filedialog.askopenfilename(filetypes = ファイルタイプ ...

Python

環境
Python 3.9.2
PyCharm 2021.3.3

書式
filedialog.askdirectory(initialdir =フォルダパス)
ライブラリ「tkinter」の ...

Python

環境
PyCharm 2021.3
Python 3.9.2

書式
tkinter.Button(root, text=’文字’, bg=’背景色’, ...

Python

環境
PyCharm 2021.3
Python 3.9.2

書式
関数に可変長引数「*args」を使う
def 関数名(*args):
処理コード
可変長引数を使う場合は「 ...

Python

環境

PyCharm 2021.3Python 3.9.2

書式
set型(集合) の定義
{値1,値2,値3}

Pythonの「set型(集合型)」は「値」を配列のように扱います。「値」をカンマ ...

Python

環境
PyCharm 2021.3
Python 3.9.7

書式
1.ブックを取得します
ブック変数名 = openpyxl.load_workbook(ファイルのパス)
2.シー ...

Python

環境
PyCharm 2021.3
Python 3.9.7

書式
1.ブックを取得します
ブック変数名 = openpyxl.load_workbook(ファイルのパス)
2.シー ...

Python

環境

PyCharm 2021.3Python 3.9.7

書式
1.ブックを取得します
openpyxl.load_workbook(excelファイルのパス)

2.シートを取得します

Python

環境

PyCharm 2021.3Python 3.9.7

書式
1.ブックを取得します
openpyxl.load_workbook(excelファイルのパス)

2.シートを取得します

Python

環境

PyCharm 2021.3Python 3.9.7

書式
1.ブックを取得します
openpyxl.load_workbook(excelファイルのパス)

2.シートを取得します

Python

環境
PyCharm 2021.3
Python 3.9.7

書式
round(数値,桁数)
round関数を使って四捨五入をします。
第2パラメータが丸める桁数です。第2パラメータ ...

Python

環境

PyCharm 2021.3Python 3.9.7

構文
文字列.isdecimal()
isdecimal関数を使って対象の文字列が数値のみかチェックします。
数値のみならTrue、数値以外 ...