Python

書式
os.path.getsize(path)
path のサイズをバイト数で返します。
使用例

# coding: utf-8import ostargetPath = "C:\\study\\ple ...

Python

書式
datetime.datetime.fromtimestamp(path)
システムの ctime、Unix系など一部のシステムでは最後にメタデータが変更された時刻、
Windows などその他のシステム ...

Python

書式
move(移動前フォルダ,移動後フォルダ)
使用例

# coding: utf-8import shutilpa = "C:\\Study\\testA"pb = "C:\\Study\\skill\\te ...

Python

書式
os.mkdir(フォルダ名)
os.rmdir(フォルダ名)
使用例

# coding: utf-8import ospa = "C:\\Study\\testA"pb = "C:\\Study\ ...

Python

インストール方法
1.「python-3.9.2-amd64.exe」をダウンロードします。

2.「python-3.9.2-amd64.exe」をダブルクリックします。

3.「Add Python 3 ...

Python

書式
os.rename(変更前フォルダA, 変更後フォルダB)
使用例

# coding: utf-8import ospa = "C:\\Study\\testA"pb = "C:\\Study\\testB ...

Python

書式
os.path.isdir(パス名):
使用例

# coding: utf-8import ospt = "C:\\study"if os.path.isdir(pt): print("folder exi ...

Python

説明
リスト名.sorted()
使用例

lstA = lstB = print("リストAのソート結果:")print(sorted(lstA))print("リストBのソート結果:")print(sorted ...

Python

使用例

str = """A001,B002,C003D004."""

実行結果
A001,
B002,
C003
D004.

Python

書式
OrderedDictオブジェクト名.update(key=value,xxx )
del OrderedDictオブジェクト名「キー」
使用例

import collectionscft = co ...

Python

書式
(, xxx)
使用例

import collectionscftA = collections.OrderedDict(k1=66, k2=77, k3=88)cftB = collection

Python

書式
変数名=値1 if x < y else 値2
使用例

# coding: utf-8#!/usr/bin/python3x = 11y = 22 res=66 if x < y else 10 ...

Python

書式
glob.glob(‘xxx’)
使用例

import glob print("拡張子が「.csv」のファイルの一覧を取得")for filename in glob.glob('. ...

Python

書式
os.listdir(“xxx”)
使用例

import os print("カレントディレクトリある一覧を取得")print(os.listdir("./"))print("sub ...

Python

説明
quantize(exp, rounding=None, context=None)
二つ目の操作対象と同じ指数を持つように丸めを行った、一つめの操作対象と等しい値を返します。
Decimal(̵ ...

Python

構文
def 関数名(引数)
サンプルコード

# coding: utf-8#!/usr/bin/python3def funccft(x): while x < 10: yield x x += 2res ...

Python

構文
yield 文字列
サンプルコード

# coding: utf-8#!/usr/bin/python3def funccft(): yield "Test001" yield "Test002" yield ...

Python

構文
 Y以外の文字を指定
サンプルコード

# coding: utf-8import rex = ""res = re.findall(x,'KFC')if res: print(res) print(res) ...