「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)
オブジェクトの長さ (要素の数) を返します。引数はシーケンス (文字列、 ...
「Python3」time.time()で現在時刻のUNIX時間を取得するサンプル
構文
time.time()
エポック からの秒数を浮動小数点数で返します。
エポックの具体的な日付とうるう秒 (leap seconds) の扱いはプラットフォーム依存で
サンプルコード
「Python3」calendar.month()で月のカレンダーを文字列で取得するサンプル
説明
calendar.month()で任意の年・月のカレンダーを文字列
で取得します。
使用例
「python入門」enumerate()で要素のインデックスと要素を取得する
サンプルコード1
for i, j in enumerate():print i, j結果0 testAa1 testBb2 testCcサンプルコード2
cft = for i in range(len(cft)) ...「Python」randint()関数でリストの値をランダムに表示する
構文
randint(a,b)
引数をa以上b以下
サンプルコード
「Python」SQLiteに接続してレコードを挿入(insert)するサンプル
書式
sqlite3.connect(r’dbのパス’)
使用例
「Python入門」pop()でキーを指定して要素を削除するサンプル
サンプルコード:
user= {‘yamashiro: 32, ‘kunita’: 23, ‘iketa’: 36,’gozono’: 32, ...
「Python入門」zip関数を利用するサンプル
サンプルコード
listA =
listB =
listC = zip(list1,list2)
listC
zip(*listC)
「Python入門」whileで素数を判定するサンプル
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」から始まるフォルダやファイルのみを取得する
使用例
「Python入門」read()でcsvファイルを読み込む
test.csvファイル
A001,B002,C003,D004,E005
151,152,313,414
111,222,333,444
使用例
# coding: utf-8#!/usr/ ...「python」float()で数字の文字列を浮動小数点数に変換する
使用例
# 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入門」re.search()の正規表現の使い方
1.pythonコード
#!/usr/bin/python3
import re
line = “Cats are smarter than dogs”;
searc ...
「Python入門」OrderedDictの使い方
サンプルコード
from collections import OrderedDictpython_terms = OrderedDict()python_terms = 'vlaue'python_terms = 'match ...「Python入門」10進数の値を2進数に変換するサンプル
構文
bin(x)
整数を先頭に “0b” が付いた 2 進文字列に変換します。
サンプルコード
# coding: utf-8
cftA = bin(-10) ...