【一】python学习——编码及基础
1、编码
#!/usr/bin/python
# -*- coding: UTF-8 -*-
2、文件
# 打开一个文件 fo = open("foo.txt", "w") print "文件名: ", fo.name # 关闭打开的文件 fo.close()
属性 | 描述 |
---|---|
file.closed | 返回true如果文件已被关闭,否则返回false。 |
file.mode | 返回被打开文件的访问模式。 |
file.name | 返回文件的名称。 |
file.softspace | 如果用print输出后,必须跟一个空格符,则返回false。否则返回true。 |
close()方法
read()方法
write()方法
rename() 方法
remove()方法
mkdir()方法
chdir()方法
rmdir()方法
3、数据库连接#!/usr/bin/python # -*- coding: UTF-8 -*- import MySQLdb # 打开数据库连接 db = MySQLdb.connect("localhost", "testuser", "test123", "TESTDB", charset='utf8' ) # 使用cursor()方法获取操作游标 cursor = db.cursor() # 使用execute方法执行SQL语句 cursor.execute("SELECT VERSION()") # 使用 fetchone() 方法获取一条数据 data = cursor.fetchone() print "Database version : %s " % data # 关闭数据库连接 db.close()