Python

サンプルコード:
# ファイルをオープンする
user_info = open(“changfa.txt”, “r”)

#すべて読み込んでリストデータにする ...

Python

構文
re.search(正規表現, 検索対象の文字列)
サンプルコード

# coding: utf-8#!/usr/bin/python3import reptn = "^{6}"result = re.sea ...

Python

例1
>>> a = ‘ 123’
>>> a.strip()
‘123’
>>> a=’ ...

Python

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

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

Python

サンプルコード

filename = 'test_cft.txt'with open(filename) as file_object: lines = file_object.readlines()for line in li ...

Python

Pythonコード

def leapChk(year):

if year % 400 == 0:
return True
elif year % 4 == 0 and year % 100 == ...

Python

構文
if (not 条件表現式)
サンプルコード

# coding: utf-8#!/usr/bin/python3cftX = 8cftY = 9if (not cftX == 10): print("res ...

Python

書式
for 変数名A in range(数値):
for 変数名B in range(数値):
使用例

# coding: utf-8for m in range(4): for n in range( ...

Python

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

# coding: utf-8lst = print("リストの値を取得")for kk in lst: print(kk)

実行結果
リストの値を取得 ...

Python

書式
for キー in ディクショナリ
使用例

# coding: utf-8cft = {"key1":"AA01", "key2":"BB02", "key3":"CC03", "c4":"DD04" }p ...

Python

書式
if 条件式:
conitinue
使用例

# coding: utf-8for k in range(5): if k == 3: continue print("k value is " + s ...

Python

Pythonコード
#coding:utf-8

import csv

file = “changfademo.csv”

f = open(file,”r& ...

Python

pythonコード:
#!/usr/bin/python

cftLst = ;
cftLst.append( 2017 );
print “Updated List : “, ...

Python

ドキュメント

サンプルコード

import pandas as pdobj = pd.read_csv('changfatun.csv', header=None) print(obj)print type

Python

サンプルコード:
cftLst =
cftLst.append()
print cftLst # ]