Python

サンプル
for i, s in enumerate():
print i, s
結果
0 (‘a’, ‘b’)
1 (‘c̵ ...

Python

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

import re
print(re.match(‘www’, & ...

Python

説明
ジェネレータ (generator)
構文
def reverse(data):
for index in range(len(data)-1, -1, -1):
yield data ...

Python

書式
文字列.strip(削除文字列)
サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 -*-target = "STA-12345ST"res = target.strip ...

Python

構文
hex(整数)

サンプルコード

# coding: utf-8#!/usr/bin/python3cftA = hex(255)print("result1: ",cftA) cftB = hex(-4 ...

Python

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

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

Python

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

# coding: utf-8#!/usr/bin/python3import recftA = "d{3,}"res = re.sear ...

Python

例1
#!/usr/bin/env python
# -*- coding=utf-8 -*-
#
import re
text = ‘pythontab’
m ...

Python

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

# coding: utf-8

xx = oct(8)

Python

サンプルコード
city_list =
if “tokyo” in city_list:
//some code

Python

next()
next(iterator)

サンプルコード
#!/usr/bin/python3

# ファイルのオープン
fo = open(“changfa.txtR ...

Python

書式
if (条件式1) and (条件式2)
サンプルコード

# coding: utf-8#!/usr/bin/python3cftX = 10cftY = 10if (cftX == 10) and (cf ...

Python

説明
1.os.path.isfile(path)
path が 存在する 一般ファイルなら True を返します。
2.os.path.isdir(path)
path が 存在する ディレクトリなら ...

Python

サンプルコード

cft = print cft.index("example")print cft.index("new")print cft.index("z")print "c" in cft

結果
5

Python

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

# coding: utf-8#!/usr/bin/python3cftA = o ...

Python

pythonコード:

#coding:utf-8
import re

f = open(‘sample.csv’,’r’)

for rc in ...

Python

サンプルコード
cft1 =
cft2=
zipped = zip(cft1, list2)
# zipped
#

Python

サンプルコード
def isNone_Func(cft):
if cft is None:
print(‘None’)
elif cft:
print(‘Tr ...