Python

サンプルコード
s = ‘5678’

print(s.rjust(8, ‘0’))
# 00005678

print(s.ljust(8,  ...

Python

書式
list(reversed(配列))
使用例

cftOld = cftNew = list(reversed(cftOld))print("before result")print(cftOld)prin ...

Python

サンプルコード

import csvcft = , , , ]with open("employeet.csv", "w") as emp: k = csv.writer(emp) for dd in cft: k.writer ...

Python

サンプルコード:

with open('changfa.txt') as fileObj:contents = fileObj.read()print(type(contents))print(contents)

Python

サンプルコード

# coding: utf-8#!/usr/bin/python3cft = "C:\\arkgame\\com\\study.doc"print (cft)

結果
>python test.p ...

Python

サンプルコード

cityList =
# 配列の要素を1つずつ表示
for i in range(0, len(cityList)):
print(cityList)

# 配列の要素を1 ...

Python

構文
集合(set)名.add(要素)
集合(set)名.remove(要素)

サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 -*-setA = {"A001" ...

Python

サンプルコード

for inx, val in enumerate():print(inx)print(val)

結果
0
uyy
1
dfdf

Python

構文
set(リスト名)
リストから重複した要素を取り除くことができますが、元のリストの順序は保持されない。
サンプルコード

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

Python

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

Python

構文
タプル1 +タプル2
サンプルコード
# coding: utf-8

cftA = (“T01″,”T02″,”T03” ...

Python

書式
リスト名.pop(インデックス)
インデックスは0からです。
popメソッドを使ってインデックスを指定して要素を削除します。

使用例

# coding: utf-8tt = b = tt ...

Python

書式
def 関数名():
使用例

#関数の定義def testfunc(): x = 456 print("ローカル関数のサンプル") print(x)testfunc()

実行結果
ローカル関数の ...

Python

説明
findall()はマッチするすべての部分文字列をリストにして返す。
サンプルコード

# coding: utf-8#!/usr/bin/python3import re cftA = re.findall ...

Python

書式
対象文字列
最初の1文字目の位置は0です。
「位置」にある文字を返します。
使用例

# coding: utf-8str = '山田太郎'#位置0print(str) #位置1print(s ...

Python

1.ディレクトリ名を取得
dirnm = os.path.dirname(‘./tt1/tt2/tt3.ext’)
print(dirnm)

2.ファイル名を取得
filen ...

Python

1.pythonコード
#!/usr/bin/python3

import re

line = “Cats are smarter than dogs”;

match ...

Python

使用例

import datetimett = datetime.datetime.now()print(tt.year)print(tt.month)print(tt.day)print(tt.strftime("%A"))