Python

サンプルコード

# coding: utf-8#!/usr/bin/python3 a = 20b = 10c = 15d = 5e = 0 e = (a + b) * c/d #( 30 * 15 )/5print ("(a ...

Python

構文
range(stop) 0から任意の値までの連番:
range(start, stop) 任意の範囲の連番
len(s)
オブジェクトの長さ (要素の数) を返します。引数はシーケンス (文字列、 ...

Python

構文
time.time()
エポック からの秒数を浮動小数点数で返します。
エポックの具体的な日付とうるう秒 (leap seconds) の扱いはプラットフォーム依存で
サンプルコード

#!/ ...

Python

説明
calendar.month()で任意の年・月のカレンダーを文字列
で取得します。
使用例

#!/usr/bin/python# -*- coding: UTF-8 -*- import calen ...

Python

サンプルコード1

for i, j in enumerate():print i, j結果0 testAa1 testBb2 testCc

サンプルコード2

cft = for i in range(len(cft)) ...

Python

構文
randint(a,b)
引数をa以上b以下
サンプルコード

# coding: utf-8import randomcft = n = random.randint(0,4) print(cft) ...

Python

書式
sqlite3.connect(r’dbのパス’)
使用例

# coding: utf-8import sqlite3conn = sqlite3.connect(r'D:\stud ...

Python

サンプルコード:
user= {‘yamashiro: 32, ‘kunita’: 23, ‘iketa’: 36,’gozono’: 32, ...

Python

サンプルコード
listA =
listB =
listC = zip(list1,list2)
listC

zip(*listC)

Python

Pythonコード
#!/usr/bin/python
# -*- coding: UTF-8 -*-

i = 2
while(i < 100):
j = 2
while(j ...

Python

1.+演算子で連結
str1 = ‘品川区’
str2 = ‘役所’

str3 = str1 + str2 # ‘品川区役所’ ...

Python

glob説明
「m」から始まるフォルダやファイルのみを取得する
使用例

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

Python

test.csvファイル
A001,B002,C003,D004,E005
151,152,313,414
111,222,333,444

使用例

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

Python

使用例

# coding: utf-8#!/usr/bin/python3print(float('6.78'))print(float('880'))print(float('12345'))

実行結果
>p ...

Python

1.配列の初期化
cftArr =

2.配列要素の追加
方法1
cftArr = #
cftArr = cftArr + #

方法2
cftArr =
cft ...

Python

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

import re

line = “Cats are smarter than dogs”;

searc ...

Python

サンプルコード

from collections import OrderedDictpython_terms = OrderedDict()python_terms = 'vlaue'python_terms = 'match ...

Python

構文
bin(x)
整数を先頭に “0b” が付いた 2 進文字列に変換します。
サンプルコード

# coding: utf-8

cftA = bin(-10) ...