Python学习
yhx3759356
这个作者很懒,什么都没留下…
展开
-
Python学习笔记
1、Python脚本无法中文注释的解决办法 在文件开始加上#coding:UTF-8 2.列表list中-1可以表示最后一个元素的索引 例如: classmates=['a1','a2','a3','a4'] print len(classmates) #计算列表长度 print classmates[0]#输出索引0的元素 #-1可以表示列表中最后一个元素的索引,既clas原创 2016-02-27 22:50:43 · 329 阅读 · 0 评论 -
python:获取mysql版本
import MySQLdb try: #获取mysql的连接,方法connect(‘ip’,‘user’,‘password’,‘dbname’) con=MySQLdb.connect('localhost','root','','test') #在cursor上进行数据库的所有操作 cur=con.cursor() #执行查询 cur.exec转载 2016-04-10 14:15:51 · 1723 阅读 · 0 评论 -
python:mysql查询
# coding:utf-8 import MySQLdb import sys conn = MySQLdb.connect('localhost', 'root', '', 'test') cur = conn.cursor() with conn: cur.execute("select * from yhxtest") # 输出结果每条记录为一个元组 # row原创 2016-04-10 16:16:50 · 297 阅读 · 0 评论