[PR] この広告は3ヶ月以上更新がないため表示されています。
ホームページを更新後24時間以内に表示されなくなります。
python | numpy and pandas | R | R vs Stata | R graphic | LaTeX | asymptote | Blog |
os.listdir("Desktop")
os.path.exists("Desktop/folder") os.path.exists("Desktop/file.txt")
os.path.join("Desktop", "folder/file.pdf")
os.path.splitext("Desktop/folder/subfolder/file.txt")
os.path.basename("Desktop/folder/subfolder/file.txt")
[0] * 10 ['a', 'b', 'c'] * 3
l = ['A', 'B', 'B', 'C'] l.index('B')
x = ["A", "B", "C", "D", "E", "F"] x[1::3] x[0::2]
d = { "name":"tarou" , "address":"tokyo", "age":30, "hobby":["igo", "chess", "shogi"] } d.keys()
d = { "name":"tarou" , "address":"tokyo" } d.update( {"age":30, "hobby":["igo", "chess", "shogi"]} )
set(range(5)) & set(range(3)) set(['a', 'b']) | set(['a', 'c', 'd']) set(range(4)) - set([2])
x = ['a', 'b', 'c', 'b', 'c'] list(set(x))
'aBc'.upper() 'XYz'.lower()
' abc def g '.strip() ' abc def g '.lstrip() ' abc def g '.rstrip()
unichr(100) ord("C")
"-".join(["take", "it", "easy"])
"take-it-easy".split("-")
"12".zfill(5)
pow(3, 4) 3 ** 4
18 % 7
random.seed(2)
random.random() # [0,1)一様乱数 random.uniform(2, 5) # 一様乱数 random.randint(5, 10) # 整数一様分布
x = ["a", "b", "b", "c"] d = nltk.FreqDist(x) dict(d)
import itertools a = itertools.combinations(range(1,6),3) b = list(a) print b print len(b)
import itertools a = itertools.permutations(range(1,6),3) b = list(a) print b print len(b)
time.sleep(5)
tm = datetime.datetime.today() tm.strftime("%Y-%m-%d_%H-%M-%S")
urlparse.urljoin("http://jiy.blog.shinobi.jp/", "Entry/274/")
urllib2.urlopen("http://jiy.blog.shinobi.jp/Entry/274/").read()
urllib.urlretrieve("http://bfile.shinobi.jp/admin/img/blogheader_logo.png", "file.png")
src = urllib2.urlopen("http://jiy.blog.shinobi.jp/").read() soup = BeautifulSoup.BeautifulSoup(src)
divs = soup("div", {"class":"EntryTitle"}) divs[0]
imgs = soup("img") imgs[2].get("src")
re.sub("<[^<>]*>", "", src)
x = [ ["x", "y", "z"], [10, 5, 3], [1, "XYZ", 3], ["5", 1, "ABC"] ] with open('test.csv', 'wb') as f: ff = csv.writer(f) for row in x: ff.writerow(row)
data = [ {"name":"ichiro", "age":20} , {"name":"tarou", "age":15} ,{"name":"takuro", "age":30} ] head = ("name", "age") with open("test.csv", "wb") as f: ff = csv.DictWriter(f, head) for row in data: ff.writerow(row)
data = [ {"name":"ichiro", "age":20} , {"name":"tarou", "age":15} ,{"name":"takuro", "age":30} ] head = ("name", "age") with open("test.csv", "wb") as f: ff = csv.DictWriter(f, head) # ここ row = dict( (n, n) for n in head ) ff.writerow(row) for row in data: ff.writerow(row)
x = png.Reader("file.png").read()
list(x[2])
os.system("ls -a")
excecfile("file.py")
sys.path.append("/my/favorite/path")