Python

書式
カーソル名.execute(“SHOW DATABASES”)
使用例

import mysql.connector# データベースへの接続conn = mysql.connecto ...

Python

書式
mysql.connector.connect(host=xxx,user=xxx,password=xxx
使用例

import mysql.connector#mysqlに接続 ユーザー名 パスワード  ...

Python

書式
sqlite3.connect(r’dbパス名’)

使用例

# coding: utf-8import sqlite3#SQLiteに接続conn = sqlite3.conne ...

Python

書式
\’ シングルコーテーション
\” ダブルコーテーション
\t タブを表示
\\ バックスラッシュ
使用例

# coding: utf-8# シングルコーテー ...

Python

書式
for 変数 in リスト名:
if 条件式:
break
サンプルコード

cftLst = for kk in cftLst: if kk == 'Fr': print('break st ...

Python

使用例

import datetimex = datetime.datetime(2021, 7, 16)ロケールの曜日名print(x.strftime("%A"))%a : ロケールの曜日名(短縮形)print(x.strf ...

Python

使用例

# coding: utf-8def funcA(x): for a in range(10): b = yield ('world',kk) if b is not None: kk = btt = funcA("sa ...

Python

使用例

# coding: utf-8def funcA(a): while a < 10: yield a a += 1nn = funcA(0)print(next(nn)) print(next(nn))

実行結 ...

Python

書式
lambda 変数1:変数2:式
使用例

# coding: utf-8def funcA(a,b): c = b(4,11) return a+str(c)print(funcA("計算結果:",lamb ...

Python

書式
for キー in ディクショナリ
使用例

# coding: utf-8cft = {"key1":"AA001", "key2":"BB002", "key3":"CC003"}for key in c ...

Python

書式
ディクショナリ名「キー」
使用例

# coding: utf-8cft = {"keyA":"AA01", "keyB":"BB02", "keyC":"CC03"}print (cft) print (c ...

Python

書式
配列.reverse()
使用例

cftLst = print("reverse result before")print(cftLst)cftLst.reverse()print("reverse res ...

Python

1.OSの確認
# cat/etc/redhat-release
CentOS Linux release 8.3.2011

2.python3.8のインストール
# dnf -y install ...

Python

書式
datetime.isoformat(sep=’T’, timespec=’auto’)
日時を ISO 8601 書式で表した文字列で返します:
date ...

Python

書式
strftime(format)
%A ロケールの曜日名を表示します。
使用例

import datetimecft = datetime.datetime.now()print("日付")prin ...

Python

書式
datetime.datetime.now()
現在日時のdatetimeオブジェクトを取得する
使用例

import datetimecftA = datetime.datetime.now()p ...

Python

書式
os.remove(パス名)
使用例

# coding: utf-8import ostargetPath = "C:\\study\\pleiades-2020-12-java-win-64bit-jre ...

Python

書式
glob.glob(pathname, *, recursive=False)
glob()の第一引数にパスの文字列を指定する。ワイルドカード*などの特殊文字を使用。
使用例

# coding: u ...