python基础教程
列表 and 方法
print(list(“hello”))
lst=list(“hellpo”)
print(lst.clear())
print(“I”,”wish”,’to’,’register’,’a’,’complaint’,sep=’_’)
x==y
x is y //x和y是同一个对象
x in y //x是容器y的成员
x not in y
x!=y
== 和 is 的区别
x=y=[1,2]
z=[1,2]
x==y 输出结果为真
x==z 输出结果为真
x is y 输出结果为真
x is z 输出结果为假
x和y指向同一个列表,是相同的对象,
但是和z是相等的,但是不是相同的。
assert 断言函数
类似于当在assert指定的条件不能满足的时候,程序中断,并给出错误提示。
语法:
assert conditon,”提示”
age = 10
assert 0
python 和数据库之间的连接
connect()函数创建一个连接对象,连接对象表示到SQL数据库的通信链路,使用方法cursor可从连接获得游标。
连接对象的方法如下:
close() 关闭连接对象。连接对象以及游标将不可用
commit() 提交未提交的事务
rollback() 回滚未提交的事务
cursor() 返回连接的游标对象
游标对象的方法:游标可以用来执行查询和查看结果。
execute(”’query”’[, params]) 执行SQL操作–可能指定参数
fetchall()
游标对象属性:
description
例子:
def connection(host=”,port=”,user=”,password=”,dbname=”):
connection=psycopg2.connect(host=host,port = port ,user = user, password=password,dbname=dbname)
return connect
MySQLdb默认查询结果都是返回tuple,通过使用不同的游标可以改变输出格式,这里传递一个cursorclass=cursors.DictCursor参数。
connection(host= , port= ,user= ,password= ,dbname= , cursorclass=MySQLdb.cursors.DictCursor)
def query(sql,connection = connection()):
cursor=connection.cursor()
cursor.execute(sql)
column_names = [desc[0] for desc in cursor.description]
res= cursor.fetchall() //获取所有查询结果
connection.close()
return res,column_names
cursor.execute(”’ create table %s (id int primary key,name varchar(30)) ”’,%table_name)
cursor.fetchmany(5) //查询五条记录
cursor.fetchone() //查询一条记录
cursor.fetchall() // 查询所有记录