I am Charmie

メモとログ

2016-10-06から1日間の記事一覧

Set in Python

集合(Set)を扱うPythonのモジュールを調べたり試したり. setモジュール/ set module len(s): 集合sの要素数を返す x in s: xがsのメンバーに含まれていればTrueを返す x not in s: xがsのメンバーに含まれていればTrueを返す s.isdisjoint(t): sとtが共通…

Python module: shapely

Shapely is a python module for manipulation and analysis of planar geometric objects. Installation Execute a command from either of the followings: conda install -c scitools shapely pip install shapely 以下,ユーザマニュアルの要約をダラダ…