摘要: 一、安装MySQL-python# yum install -y MySQL-python二、打开数据库连接#!/usr/bin/pythonimport MySQLdbconn = MySQLdb.connect(user='root',passwd='admin',host='127.0.0.1... 阅读全文
posted @ 2014-12-29 19:10 观海云不远 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 一、语法#!/usr/bin/pythonfilename='hello'#try except finally demotry: open('abc.txt') print helloexcept IOError,msg: print 'the file not exist'ex... 阅读全文
posted @ 2014-12-29 16:26 观海云不远 阅读(320) 评论(0) 推荐(0) 编辑