Python

構文
文字列
最初の1文字目の位置は0です。
マイナスの値の場合、文字列の最後尾から取得します。
使用例

# coding: utf-8cft = 'テストデータ'print("指定した文字の取得 ...

Python

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

ttLst = for vv in ttLst: if vv == 'D004': print('break message 111') break print(vv ...

Python

書式
for 変数 in リスト名:
else: 処理コード
サンプルコード

ttLst = for ee in ttLst: print(ee)else: print('become smart') ...

Python

1.配列

cft = ("AA01", "BB02", "CC03")for h in cft: print(h)

結果
AA01
BB02
CC03

2.文字列

cft = "ar ...

Python

構文
def __init__(self):
self.data = []
サンプルコード

# coding: utf-8class User: def __init__(self, name): sel ...

Python

書式
sorted(リスト名)
使用例

# coding: utf-8cft = res = sorted(cft)print("古いリスト")print (cft) print("新しいリスト")print ( ...

Python

説明
range 型は、数のイミュータブルなシーケンスを表し、一般に for ループにおいて特定の回数のループに使われます。
サンプルコード

# coding: utf-8#!/usr/bin/python3 p ...

Python

構文
range(start, stop, step)
start ≦ 値< stopでstepずつ増加する等差数列が生成される。
サンプルコード

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

Python

書式
raise StopIteration
使用例

class Test: # __iter__の実装 def __iter__(self): self.a = 3 return self # __next__ ...

Python

書式
def __iter__(self):
def __next__(self):
使用例

class Test: #メソッド__iter__の実装 def __iter__(self): self.a ...

Python

書式
オブジェクト名 = Path(‘ファイルパス’)
オブジェクト名.glob(‘./*’)
pathlib はオブジェクト指向のファイルパスを扱うクラスです。 ...

Python

環境
Python 3.9.7

説明
os.scandir(path=’.’)
これは、オペレーティングシステムがディレクトリのスキャン中にこの情報を提供した場合、

Python

書式
os.listdir(path=ファイルパス)
os.listdir関数にフォルダのパスを渡して、フォルダのファイル名がリストで戻ります

使用例

import os# 対象フォルダのパスdirI ...

Python

書式
import psycopg2
psycopg2.connect(‘host=ホスト名 port=5432 dbname=データベース名 user=ユーザー名 password=パスワード名̵ ...

Python

書式
base64.b64encode(文字列.encode())
テキスト文字列をencode()メソッドを使ってbyteデータに変換します

使用例

import base64target = 's ...

Python

環境
Python 3.9.7

書式
import socket
ホスト名 = socket.gethostname()

使用例

import socket# ホスト名の取得hst ...

Python

書式
1.PostgreSQLに接続
psycopg2.connect(‘host=ホスト名 port=5432 dbname=データベース名 user=ユーザー名 password=パスワード名̵ ...

Python

書式
方法1
import getpass
ログインユーザーID = getpass.getuser()

方法2
import os
ログインユーザーID = os.getlogin ...