Python

参考コード:
#!/usr/bin/env python
# coding=utf-8
# inorderBL.py

import stdinInput

def inorder(arra ...

Python

サンプルコード
#!/usr/bin/env python
#coding=utf-8
#BubbleSort.py
#user can choose sort style: desc(1) or as ...

Python

サンプルコード:
#!/usr/bin/env python
#coding=utf-8
# stdinInput.py

intsortArrays=[]

def stdinInput( ...

Python

1.関数定義def
def example(a,b,c):
return a+b*c

>>> tuna=(5,7,3)
>>> example(*tuna) ...

Python

Pythonコード:
#!/usr/bin/env python
# encoding=utf8
from HTMLParser import HTMLParser
import os
impo ...

Python

ファイル名:startnews24_exec.py
pythonコード:
#!/bin/env python
import paramiko
import sys,os
import time ...

Python

pythonコード:
#coding:utf-8
from bs4 import BeautifulSoup
import requests
import random

def getpro ...

Python

サンプルコード:
import sys
from itertools import chain, combinations
from collections import defaultdict
fro ...

Python

書式
str.index(sub])
find() と同様ですが、部分文字列が見つからなかったとき ValueError を送出します。
対象文字列.index(検索文字列)
サンプルコード

#! ...

Python

サンプルコード:
from pyExcelerator import *
w = Workbook()
ws = w.add_sheet(‘python_startnews24′) ...

Python

説明
sys.argv
Pythonスクリプトに渡されたコマンドライン引数のリスト。 argv はスクリプトの名前となりますが、フルパス名かどうかは、OSによって異なります。
sys.path
モジュー ...

Python

構文
セットA.difference(セットB)
サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 -*-setA = {"A001","B002","C003","D004" ...

Python

構文
def 関数名():
while 条件
yield xxx

サンプルコード

# coding: utf-8def sampleFunc(n): while n < 10: yiel ...

Python

構文
unicodedata.numeric(chr)
文字 chr に割り当てられている数値を、float で返します。この値が定義されていない場合には default が返されますが、この引数が与えられていなければ ...

Python

書式
print(辞書名)
使用例

cft ={ "username": "yamada", "city": "tokyo", "age": 21}print(cft)

結果
{‘user ...

Python

サンプルコード:
#!/usr/bin/env python
#
urlfile = urllib2.urlopen(‘
print “ドキュメント”, urlfil ...

Python

サンプルコード:
#!/usr/bin/env python

import ftplib # FTPモジュールをインポート
session = ftplib.FTP(‘ftp.arkgame.c ...

Python

サンプルコード:
#!/usr/bin/python
# Filename: histsimilar.py
# -*- coding: utf-8 -*-

import Image

de ...