Python

環境
Python 3.9.2
書式
リスト名 =
リスト名.count(値)
指定要素が含まれている数をカウントします。

使用例

#リスト名cftLstの宣言cftLst = ...

Python

構文
max(辞書名)
min(辞書名)
サンプルコード

# coding: utf-8#!/usr/bin/python3 cft = {'11': 'A001', '21': 'B002', '33' ...

Python

サンプル
i = 4
print isinstance(i, int)

結果
True

Python

サンプルコード

cftLst= strA = ''.join(cftLst)strB = ' '.join(cftLst)print(strA)print(strB)

実行結果
1368TestData
1 ...

Python

書式
リスト名 =
リスト名.index(数字)
index()を使用して、配列に指定要素の位置を検索します。
使用例

#リスト名cftLstの宣言cftLst = print("配列cftLs ...

Python

説明
math.floor(x)
x の「床」 (x 以下の最大の整数) を返します。 x が浮動小数点数でなければ、内部的に x.__floor__() が実行され、 Integral 値が返されます。

...

Python

説明
json.dump(obj, fp, *, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent ...

Python

説明
シングルコーテーション \’
ダブルコーテーション \”
バックスラッシュ \\

サンプルコード

# coding: utf-8#!/usr/bin/python ...

Python

書式
super().__init__(引数)
サンプルコード

# coding: utf-8#!/usr/bin/python3class UserParent: def __init__(self, name ...

Python

構文
max(辞書名.values())
min(辞書名.values())

使用例

# coding: utf-8#!/usr/bin/python3 cft = {'K11': '101', 'K ...

Python

書式
for 変数 in リスト名:
使用例

rLst = for vv in rLst: if vv == 'D004': print('break message 111') continue print(v ...

Python

説明
os.path.join パスを結合します。
サンプルコード

import osfor current_dir, dirs, files in os.walk('.'): for filename in f ...

Python

構文
bin(x)
整数を先頭に “0b” が付いた 2 進文字列に変換します。 結果は Python の式としても使える形式になります。
使用例

# coding: utf-8x ...

Python

書式
class int(x, base=10)
数値または文字列 x から作成された整数オブジェクトを返します。
引数が与えられない場合には 0 を返します。
使用例

# coding: utf ...

Python

書式
リスト名.reverse()

使用例

# coding: utf-8lst = print("元のリスト")print (lst) lst.reverse()print("reverseでリストの逆順に ...

Python

書式
リスト名.copy()

使用例

# coding: utf-8lsA = res = lsA.copy()print("コピー元のリストの値")print (lsA) print("コピー先のリストの値 ...

Python

# ファイルをオープン
empdetail= open(“employee.txt”, “r”)

# すべての内容を読み込む
cft = empdetail. ...

Python

説明
def 関数名(引数1, 引数2, …):
return 表現式
変数名前 = lambda 引数1, 引数2, …:表現式

使用例

# coding: utf- ...