Python

書式
while 条件式:
サンプルコード

i = 8while i < 12: print(i) i += 1

結果
8
9
10
11

Python

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

# coding: utf-8#!/usr/bin/python3str = 'skillinarkgame5678'print("result1: ",str) print("re ...

Python

書式
raise 例外クラス名(引数の値)
raise 文を使って、特定の例外を発生させることができます。
使用例1

# coding: utf-8#!/usr/bin/python3try: kk = ...

Python

書式
for インデックス変数名、要素変数名 in enumerate(リスト名)
使用例

msgLst = print("リストのインデックスと要素を取得")for index,value in enumera ...

Python

cft_dict = {“dataAA”: 23, “dataBB”: 24, “dataCC”: 25,”dataDD”: 56}

Python

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

# coding: utf-8#!/usr/bin/python3cft = 'arkgamecom'print("result1: ",cft)print("result2: ", ...

Python

書式
enumerate(msgLst,開始値)
使用例

msgLst = print("enumerate関数の第2引数に開始値を指定")for index,value in enumerate(msgLst, ...

Python

構文
キー名 in 辞書名
使用例

# coding: utf-8#!/usr/bin/python3 cft = {'Taa': '122', 'Tbb': '344', 'Tcc': '566', 'Tdd' ...

Python

構文
大文字を小文字に変換
文字列.lower()
小文字を大文字に変換
文字列.upper()

サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 ...

Python

書式
リスト名
使用例

msgLst = print("インデックス3~5の要素を取り出す")for kk in msgLst: print(kk) print("奇数番目の要素") for kk in msgL ...

Python

構文
文字列.title()
文字列を、単語ごとに大文字から始まり、残りの文字のうち大小文字の区別があるものは全て小文字にする、
タイトルケースにして返します。
サンプルコード

#!/usr/bi ...

Python

構文
指定値 in 辞書名.values()
サンプルコード

# coding: utf-8#!/usr/bin/python3 cft = {'Taa': '122', 'Tbb': '344', 'Tcc': ...

Python

説明
os.walk(top, topdown=True, onerror=None, followlinks=False)
ディレクトリツリー以下のファイル名を、ツリーをトップダウンもしくはボトムアップに走査すること ...

Python

書式
1.英数字の判定 isalnum()
2.英字の判定 isalpha()
3.空白文字の判定 isspace()
4.数字の判定 isdigit()

使用例

coding: ut ...

Python

構文
(キー,値) in 辞書名.items())
サンプルコード

# coding: utf-8#!/usr/bin/python3 cft = {'Taa': '122', 'Tbb': '344', 'Tc ...

Python

構文
文字列
1つめの引数の「開始位置」から2つめの引数の「終了位置」の前にある文字を対象に「増分」の位置にある文字を返します。
使用例

# coding: utf-8str = 'testdata'pr ...

Python

書式
str.isdigit()
文字列中の全ての文字が数字で、かつ 1 文字以上あるなら True を、そうでなければ False を返します。
ここでの数字とは、十進数字に加えて、互換上付き数字のような特殊 ...

Python

環境
Python 3.9.2
書式
for 変数名 in glob.glob(*.拡張子)
os.remove(変数名)
関数
1.os.remove(path, *, dir_fd= ...