-Python関係のWiki
--[[Python]]
--[[Python/MySQL]]
--[[Python/urllib]]
--[[Python/オブジェクト指向]]
--[[Python/外部プログラム実行]]
--[[Python/コマンドライン]]
--[[Python/コンテナ]]
--[[Python/ネットワーク]]
--[[Python/日付・時間]]
--[[Python/ファイル]]
--[[Python/メモリ]]
--[[Python/文字列]]
----
-[[Python: set型の集合演算で2つのリスト要素を比較:http://www.yukun.info/blog/2008/08/python-set-list-comparison.html]]

* 分類 [#v53f6079]
-シーケンス
--文字列
--ユニコード文字列
--リスト
--タプル
-辞書
-マップ
-セット

* 変換 [#s399460a]
-List => set
 set(aList)

-set => List
 list(aSet)

* タプル [#u9d03214]
-[[タプルをCSVに変換:http://blog.livedoor.jp/odaxsen/archives/941051.html]]

* 辞書 [#ec99761b]
 >>> dict = {'a':1, 'b':2, 'c':3}
 >>> dict
 {'a':1, 'b':2, 'c':3}
 >>> dict.has_key('a')
 True
 >>> dict.has_key('x')
 False
 >>> del dict['a']
 >>> dict
 {'b':2, 'c':3}

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS