Python

Perlコード:
!/usr/bin/perl
use XML::Simple;
use Data::Dumper;
@arr = ;

//オブジェクトを作成(create object) ...

Python

構文
文字列A + 文字列B
サンプルコード

# coding: utf-8resA = 'A001' + 'B002' + 'C003'print(resA)strA = 'T001'strB = 'T002' ...

Python

書式
lambda 変数名:変数名+式
使用例

# coding: utf-8res = lambda x : x + " 123"print(res("log"))

実行結果
>python ...

Python

書式
global 変数名
使用例

# coding: utf-8pa = "66"def funcA(): #global 変数名 global pa pa = "345" return pa#関数funcAp ...

Python

1.サーバー側
# socket_server.py

import socket
s = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
s.bind ...

Python

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

def testfunc(n): return lambda x : x * nres = testfunc(2)print("計算テスト")print(res(11)) ...

Python

書式
collections.OrderedDict()
使用例

import collectionscft = collections.OrderedDict()cft = 31cft = 32cft = 43 ...

Python

解決方法:
Download get-pip.py (

sudo python get-pip.py

pip install pycrypto

Done!

Python

構文
文字列.split(区切り文字列 )
サンプルコード

# coding: utf-8#!/usr/bin/python3target = '123,abc,test,ark,game'res = targe ...

Python

書式
json.dumps(obj, *, skipkeys=False, ensure_ascii=True,
check_circular=True, allow_nan=True, cls=None,
i ...

Python

サンプルコード

cftdict ={ "key01": "111", "key02": "222", "key03": 333}print(cftdict)

結果
{‘key01’: R ...

Python

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

# coding: utf-8import sqlite3#SQLiteに接続 raw文字列(r)conn = sqlit ...

Python

構文
文字列A\
使用例

# coding: utf-8resA = 'A001' 'B002' 'C003'print(resA)resB = 'Ta'\ 'Tb'\ 'Tc'print(resB)

実行結 ...

Python

findall()
マッチする部分すべてをリストで取得します
使用例

# coding: utf-8import restr = "ST"res = re.findall(str,'2infoSTASTeeeST ...

Python

構文
re.finditer(pattern, string, flags=0)
string 中の正規表現 pattern の重複しないマッチ全てに渡る マッチオブジェクト を yield する イテレータ を返しま ...

Python

説明
range(start, stop)
start ≦ 値 < stopの連番が生成される
使用例

# coding: utf-8#!/usr/bin/python3print(list(ran ...

Python

サンプルコード

# coding: utf-8#!/usr/bin/python3 listA = print("reverse before: ",listA)listA.reverse()print("reverse aft ...

Python

構文
変数名「start:end」
startを省略すると先頭から、endを省略すると末尾までの範囲となります。

使用例

# coding: utf-8#!/usr/bin/python3 cftVa ...