Python學習筆記一 基礎知識

來源:互聯網
上載者:User

Lovely Python整理
Python - 弱資料類型,不需要強制聲明
Python - 一切都是對象
Pyhton - 語句塊以:結尾,並且下句縮排
Python -  複用層級 程式碼→函式→類→模組
Python - 支援函數
Python - KISS原則 == Keep It Simple,Stupid
一、中文支援
# -*- coding: utf-8 -*-

二、使用模組
import os, sys,cmd
fromt cdctools.py import *
from threading import Thread #多線程
三、模組
os.listdir('path');
os.walk('path')
檔案操作
open('fileName','a/w').write('content');
四、函數
def method(param1,param2):
doSomething
五、命令列互動
import sys
sys.arg[x]
六、類
class ClassName(cmd.Cmd):
def __init__(self):
cmd.Cmd.__init__(self)
if __name__ ==  ' __main__ ':
doSomething
線程
class grepIt(Thread):
def __init__(self,param1,param2):
Thread.__init__(self)
七、文法
filelist = os.listdir('path')
for cdc in filelist:
if ".cdc" in  cdc:
if keword  in line:
print line
異常捕獲
try:
for type in tryuni:
try:
ustring = unicode("%s}"%type+stream, type)
#try decode by list
except:
continue
#break!continue try decode guess
except:
return u"bad unicode encode!"
八、其他工具
chardet 編碼探測
epydoc py文檔產生器
ConfigParser 檔案操作API
Web架構
Karrigell WebFrameworks
web.py
九、其他
案頭開發 Tk/Tcl Qt WxPython win32com

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.