常用python編程模板匯總

來源:互聯網
上載者:User
在我們編程時,有一些代碼是固定的,例如Socket串連的代碼,讀取檔案內容的代碼,一般情況下我都是到網上搜一下然後直接粘貼下來改一改,當然如果你能自己記住所有的代碼那更厲害,但是自己寫畢竟不如粘貼來的快,而且自己寫的代碼還要測試,而一段經過測試的代碼則可以多次使用,所以這裡我就自己總結了一下python中常用的編程模板,如果還有哪些漏掉了請大家及時補充哈。

一、讀寫檔案

1、讀檔案

(1)、一次性讀取全部內容

filepath='D:/data.txt' #檔案路徑with open(filepath, 'r') as f:  print f.read()

(2)讀取固定位元組大小

# -*- coding: UTF-8 -*-filepath='D:/data.txt' #檔案路徑f = open(filepath, 'r')content=""try:  while True:    chunk = f.read(8)    if not chunk:      break    content+=chunkfinally:  f.close()  print content

(3)每次讀取一行

# -*- coding: UTF-8 -*-filepath='D:/data.txt' #檔案路徑f = open(filepath, "r")content=""try:  while True:    line = f.readline()    if not line:      break    content+=linefinally:  f.close()  print content

(4)一次讀取所有的行

# -*- coding: UTF-8 -*-filepath='D:/data.txt' #檔案路徑with open(filepath, "r") as f:  txt_list = f.readlines()for i in txt_list:  print i,

2、寫檔案

# -*- coding: UTF-8 -*-filepath='D:/data1.txt' #檔案路徑with open(filepath, "w") as f: #w會覆蓋原來的檔案,a會在檔案末尾追加  f.write('1234')

二、串連Mysql資料庫

1、串連

#!/usr/bin/python# -*- coding: UTF-8 -*-import MySQLdbDB_URL='localhost'USER_NAME='root'PASSWD='1234'DB_NAME='test'# 開啟資料庫連接db = MySQLdb.connect(DB_URL,USER_NAME,PASSWD,DB_NAME)# 使用cursor()方法擷取操作遊標 cursor = db.cursor()# 使用execute方法執行SQL語句cursor.execute("SELECT VERSION()")# 使用 fetchone() 方法擷取一條資料庫。data = cursor.fetchone()print "Database version : %s " % data# 關閉資料庫連接db.close()

2、建立表

#!/usr/bin/python# -*- coding: UTF-8 -*-import MySQLdb# 開啟資料庫連接db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )# 使用cursor()方法擷取操作遊標 cursor = db.cursor()# 如果資料表已經存在使用 execute() 方法刪除表。cursor.execute("DROP TABLE IF EXISTS EMPLOYEE")# 建立資料表SQL語句sql = """CREATE TABLE EMPLOYEE ( FIRST_NAME CHAR(20) NOT NULL, LAST_NAME CHAR(20), AGE INT, SEX CHAR(1), INCOME FLOAT )"""cursor.execute(sql)# 關閉資料庫連接db.close()

3、插入

#!/usr/bin/python# -*- coding: UTF-8 -*-import MySQLdb# 開啟資料庫連接db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )# 使用cursor()方法擷取操作遊標 cursor = db.cursor()# SQL 插入語句sql = """INSERT INTO EMPLOYEE(FIRST_NAME,     LAST_NAME, AGE, SEX, INCOME)     VALUES ('Mac', 'Mohan', 20, 'M', 2000)"""try:  # 執行sql語句  cursor.execute(sql)  # 提交到資料庫執行  db.commit()except:  # Rollback in case there is any error  db.rollback()# 關閉資料庫連接db.close()

4、查詢

#!/usr/bin/python# -*- coding: UTF-8 -*-import MySQLdb# 開啟資料庫連接db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )# 使用cursor()方法擷取操作遊標 cursor = db.cursor()# SQL 查詢語句sql = "SELECT * FROM EMPLOYEE \ WHERE INCOME > '%d'" % (1000)try: # 執行SQL語句 cursor.execute(sql) # 擷取所有記錄列表 results = cursor.fetchall() for row in results: fname = row[0] lname = row[1] age = row[2] sex = row[3] income = row[4] # 列印結果 print "fname=%s,lname=%s,age=%d,sex=%s,income=%d" % \ (fname, lname, age, sex, income )except: print "Error: unable to fecth data"# 關閉資料庫連接db.close()

5、更新

#!/usr/bin/python# -*- coding: UTF-8 -*-import MySQLdb# 開啟資料庫連接db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )# 使用cursor()方法擷取操作遊標 cursor = db.cursor()# SQL 更新語句sql = "UPDATE EMPLOYEE SET AGE = AGE + 1             WHERE SEX = '%c'" % ('M')try:  # 執行SQL語句  cursor.execute(sql)  # 提交到資料庫執行  db.commit()except:  # 發生錯誤時復原  db.rollback()# 關閉資料庫連接db.close()

三、Socket

1、伺服器

from socket import *from time import ctimeHOST = ''PORT = 21568BUFSIZ = 1024ADDR = (HOST, PORT)tcpSerSock = socket(AF_INET, SOCK_STREAM)tcpSerSock.bind(ADDR)tcpSerSock.listen(5)while True:  print 'waiting for connection...'  tcpCliSock, addr = tcpSerSock.accept()   print '...connected from:', addr  while True:    try:      data = tcpCliSock.recv(BUFSIZ)       print '<', data      tcpCliSock.send('[%s] %s' % (ctime(), data))     except:      print 'disconnect from:', addr      tcpCliSock.close()       breaktcpSerSock.close()

2、用戶端

from socket import *HOST = 'localhost'PORT = 21568BUFSIZ = 1024ADDR = (HOST, PORT)tcpCliSock = socket(AF_INET, SOCK_STREAM)tcpCliSock.connect(ADDR) try:  while True:    data = raw_input('>')    if data == 'close':      break    if not data:      continue    tcpCliSock.send(data)     data = tcpCliSock.recv(BUFSIZ)     print dataexcept:  tcpCliSock.close() 

四、多線程

import time, threading# 新線程執行的代碼:def loop():  print 'thread %s is running...' % threading.current_thread().name  n = 0  while n < 5:    n = n + 1    print 'thread %s >>> %s' % (threading.current_thread().name, n)    time.sleep(1)  print 'thread %s ended.' % threading.current_thread().nameprint 'thread %s is running...' % threading.current_thread().namet = threading.Thread(target=loop, name='LoopThread')t.start()t.join()print 'thread %s ended.' % threading.current_thread().name

還請大家積極補充!

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.