Time of Update: 2016-03-28
標籤:python 操作mysql下面是我word筆記裡面粘出來的,可能排版有些問題。Windows下安裝MySQL-python:https://pypi.python.org/pypi/MySQL-python/1.2.5 安裝到系統即可。linux下安裝MySQL-python以串連MySQL::https://pypi.python.org/pypi/MySQL-python/解壓後,進入目錄下,執行python setup.py
Time of Update: 2015-11-25
標籤:資料庫資料 sql語句 python cursor result python調試mysql資料庫時,在測試單條查詢語句的時候是沒有問題的。執行過程如下:1、由連線物件conn擷取到一個cursor。 cur = conn.cursor()2、執行sql語句。 count = cur.execute(sql)3、讀取資料。
Time of Update: 2015-09-28
標籤:python 連接埠掃描 pymysql linux Clam
Time of Update: 2015-09-18
標籤:官網地址:http://mysql-python.sourceforge.net/MySQLdb User‘s Guide http://mysql-python.sourceforge.net/MySQLdb.html使用:匯入python-MySQLdb 模組import MySQLdb #匯入python-MySQLdb 模組conn = MySQLdb.connect( #建立connection host=
Time of Update: 2015-08-11
標籤:1、匯入MySQL模組
Time of Update: 2015-10-15
標籤:在Python中,可以對String調用decode和encode方法來實現轉碼。比如,若要將某個String對象s從gbk內碼轉換為UTF-8,可以如下操作 s.decode(‘gbk‘).encode(‘utf-8′) 可是,在實際開發中,我發現,這種辦法經常會出現異常: UnicodeDecodeError: ‘gbk‘ codec can‘t decode bytes in position 30664-30665: illegal
Time of Update: 2015-08-19
標籤:設定.py檔案為可執行檔Shabang標記應該寫作:#! /usr/bin/env python 以下寫法是錯的:#! /usr/bin/python#!
Time of Update: 2015-08-19
標籤: Python time strftime()方法 描述 Python time strftime() 函數接收以時間元組,並返回以可讀字串表示的當地時間,格式由參數format決定。 文法 strftime()方法文法: time.strftime(format[, t]) 參數 format -- 格式字串。 t -- 可選的參數t是一個struct_time對象。 傳回值 返回以可讀字串表示的當地時間。 說明
Time of Update: 2015-08-18
標籤:asyncore庫是python的一個標準庫,它是一個非同步socket的封裝。我們操作網路的時候可以直接使用socket等底層的庫,但是asyncore使得我們可以更加方便的操作網路,避免直接使用socket,select,poll等工具時需要面對的複雜。 這個庫很簡單,包含了一個函數和一個類:* loop()函數*
Time of Update: 2015-08-14
標籤: 無意間在網上看到了一個面試題是,寫出一個回形矩陣。實現的效果大致如下: [ 1, 2, 3, 4, 5] [16, 17, 18, 19, 6] [15, 24, 25, 20, 7] [14, 23, 22, 21, 8] [13, 12, 11, 10,
Time of Update: 2015-08-16
標籤: 在Python中,函數也是一種變數類型,也就是說可以用變數去儲存一個函數。def hello(): print("hello")print(type(hello))>>> <class ‘function‘>#將函數對象賦值為變數func,此時func指向了hello指向的函數對象func = hellofunc()&
Time of Update: 2015-08-15
標籤: 1. 定義一個函數: 1)必須以def開頭 2)參數之間用,隔開 3)函數的內容以冒號:開始,並且縮排 4)不帶運算式的return,相當於返回None
Time of Update: 2015-08-13
標籤:python字串格式化格式 描述%d 有符號整數(十進位)%i 有符號整數(十進位) %o&
Time of Update: 2015-08-10
標籤: Python寫一個指令碼解析檔案 ----基於Red Hat Enterprise Linux Server release 6.4 (Santiago);python 2.6.6 需求: 1.去掉空行 2.去掉空行後輸出到一個新檔案 附加需求(排版):1.‘-’縮排n個字元
Time of Update: 2016-06-06
本文執行個體講述了wxPython視窗中文亂碼解決方案,分享給大家供大家參考。具體方法如下:檔案儲存為 utf-8檔案開頭添加 # -*- coding: utf-8 -*-在有中文字串前加u或U,例如:u”我的網站:http://www.bitsCN.com”樣本如下: 代碼如下:# -*- coding: utf-8 -*-import wxclass App(wx.App): def OnInit(self): frame =
Time of Update: 2016-06-06
本文執行個體講述了在Python中模仿POST HTTP資料及帶Cookie提交資料的實現方法,分享給大家供大家參考。具體實現方法如下:方法一如果不使用Cookie, 發送HTTP POST非常簡單: 代碼如下:import urllib2, urllibdata = {'name' : 'www', 'password' : '123456'}f = urllib2.urlopen( url = 'http://www.bitsCN.com/', data
Time of Update: 2016-06-06
看看這個logo,有些像python的小蛇吧 。這次介紹的資料庫codernityDB是純python開發的。先前用了下tinyDB這個本機資料庫,也在一個api服務中用了下,一開始覺得速度有些不給力,結果一看實現的方式,真是太鳥了,居然就是json的儲存,連個二進位壓縮都沒有。 這裡介紹的CodernityDB
Time of Update: 2016-06-06
Python continue語句返回while迴圈的開始。Continue語句拒絕在該迴圈的當前迭代中的其餘語句執行並移動控制返回到迴圈的頂部(開始位置)。continue語句可以在while和for迴圈使用。文法Python continue語句的文法如下:continue流程圖: 例子#!/usr/bin/pythonfor letter in 'Python': # First Example if letter == 'h': continue print
Time of Update: 2016-06-06
本文執行個體講述了以windows service方式運行Python程式的方法。分享給大家供大家參考。具體實現方法如下:#!/usr/bin/env python # coding: utf-8 # SmallestService.py # # A sample demonstrating the smallest possible service written in Python.import win32serviceutil import win32service import win3
Time of Update: 2016-06-06
本文執行個體講述了python登入pop3郵件伺服器內送郵件的方法。分享給大家供大家參考。具體實現方法如下:import poplib, stringPopServerName = "mail.yourserver.com"PopServer = poplib.POP3(PopServerName)print PopServer.getwelcome()PopServer.user('yourName')PopServer.pass_('yourPass')r, items, octets =