You are here: Home > Dive Into Python > 組み込みのデータ型 > まとめ | << >> | ||||
Dive Into PythonPython from novice to pro |
ここまでで odbchelper.py プログラムとその出力の意味の全てが分かるようになりました.
def buildConnectionString(params): """Build a connection string from a dictionary of parameters. Returns string.""" return ";".join(["%s=%s" % (k, v) for k, v in params.items()]) if __name__ == "__main__": myParams = {"server":"mpilgrim", \ "database":"master", \ "uid":"sa", \ "pwd":"secret" \ } print buildConnectionString(myParams)
以下が odbchelper.py の出力です.
server=mpilgrim;uid=sa;database=master;pwd=secret
次の章に飛び込む前に, 以下の全てのことが難無くできることを確認してください.
<< リストの結合と文字列の分割 |
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | |
内省の力 >> |