You are here: Partenza > Dive Into Python > Conoscere Python > Sommario | << >> | ||||
Dive Into PythonPython per programmatori esperti |
Il programma odbchelper.py ed il suo output dovrebbero ora esservi perfettamente chiari.
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)
Prima di immergerci nel prossimo capitolo, assicuratevi di essere a vostro agio nel fare le seguenti cose:
<< Concatenare liste e suddividere stringhe |
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | |
La potenza dell'introspezione >> |