Python--self總結
class My(object):
def __init__(self, name, skill):
self.name = name
self.skill = skill
self.cry()
def cry(self): # 實例方法,必須實例化之後才可以調用
print(‘%s在哭。。。‘ % self.name)
def learn(self):
self.skill = [‘開車‘]
def my_self(self):
print(‘我的名字是%s,我會%s‘ % (self.name, self.skill))
wsl = My(‘老虎‘, [‘跑步‘]) # self = wsl
wsl.skill = ‘浪‘
wsl.learn()
wsl.my_self()
Python--self總結
相關推薦
Python--self總結
post sel learn () print __init__ skill kill -- class My(object): def __init__(self, name, skill): self.name = name self.
Python基礎總結
python 基礎總結Python基礎總結1、字符、數據類型2、list列表3、dict字典4、元祖5、文件操作6、函數本文出自 “天道酬勤” 博客,請務必保留此出處http://4543647.blog.51cto.com/4533647/1933182Python基礎總結
python 面試總結
python 面試題金* python開發工程師:1. 字符串連接+和join的區別:主要考察兩種實現方式內存管理: 字符串對象是不可改變的,Python創建一個字符串後,你不能把這個字符中的某一部分改變。任何對字符串的操作包括‘+‘操作符, 每次‘+’連接時都將申請一個內存空間,創建一個新的字符
python 學習總結2 多進程
imp 交互 發送信息 bob res pip 子線程 for test 多進程: 我們什麽時候需要多進程呢?我們知道python的多線程,實際不是真實的多線程,它同一時間在一個cpu執行一個任務,它通過上下文的切換來讓我看起來是多並發的, 那麽如果我們想要真正實現多個任務
Python學習總結 14 sphinx
學習總結 div -i logs http pytho all bsp pan 安裝 sphinx pip install sphinx -i https://pypi.douban.com/simple 參考資料: http://www.j
Python基礎總結(字符串常用,數字類型轉換,基本運算符與流程控制)
換行符 目錄 字母 字符轉換 中文 判斷 star dsw 註意 一.字符串常用操作 #Python strip() 方法用於移除字符串頭尾指定的字符(默認為空格) name=‘*egon**‘ print(name.strip(‘*‘))#移除 name 變量對應的值
Python學習總結
python 學習 python lan target 學習總結 blank tar 總結 學習 Python 總結 Python 學習總結 【第01節】 Python 學習總結 【第02節】 Python 學習總結 【第03節】 Python 學習總結 【第04節
python 學習總結6 前端學習2
blog href utf-8 總結 head 默認 多余 har pytho html與css的繼續學習 1.css 書寫可以在style處先設置一個標簽的樣式 例如 這個將圖片的邊框設置為0 為多余的邊框,默認的img標簽有一個1px的邊框: <head>
python階段總結
elif lists true 導入 ron per 條件判斷 基本語法 運算符 ##Python的基本語法1.基本輸入輸出語句print和raw_input()2.list: Python內置的一種數據類型是列表。lists是一個有序的集合,可以添加與刪除元素。3.元
python學習總結-----python安裝
python一、python簡介 python 是一種面向對象、解釋性的腳本語言,遵循 GPL 協議。語法簡單、社區強大、豐富的庫支持。又被稱為“膠水語言”。能把其他語言(主要C/C++)寫的模塊很輕松的結合在一起。二、python 安裝 windows下安裝pythonwindows下安裝python
python 學習總結3
今天 pre 小程序 brush mas 返回 等待 add 學習總結 今天學習了socket的一些知識,主要為socket模塊中socket()類及其父類的一些方法 只要包括: sock=socket.socket() sk.bind(address) #
python 學習總結4
[0 當前 light clas turn 一個 math new dig 今天在codewears上做了一道題,僅為6kyu級別,但自己收獲良多 題目為:編寫一個函數,sum_dig_pow(a, b),找到range [a, b]之間所有符合特殊規則的的數字,將其放入列
[python]pip總結
ria style png set numpy -i src -- () 基本命令解釋 安裝 pip 下載 地址 https://pypi.python.org/pypi/pip 下載 tar.gz 打開cmd,把路徑切換到解壓後的文件夾 python -m py
Python 命令總結
django import -m 寫入 version () bsp 需要 版本 本章內容 pip pip install -r requirement.py(裏面寫入需要安裝的包的名字) pip install django==1.9
Python筆記總結(1)
Language 界面 關系運算符 unp expect ber integer file back 一、變量在python中不需要為變量制定數據類型。可以單行定義多個變量。>>> a, b = 2, 3.4 >>> a 2 >&g
python類總結
AD ant ont pac gen 方法 var wid otto html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big
一、博主python基礎總結---待完善版---後續一直發布
博主python基礎總結---待完善版-Python的基本數據類型: 1、 可變: 列表 字典 2、不可變:整型 字符串 元祖字符串:''或者'' '' # string 簡寫為 str列表:[ ]
最全Python爬蟲總結(轉載)
其中 網頁 -i 變量 oba cati nod style 應該 [html] view plain copy 最近總是要爬取一些東西,索性就把Python爬蟲的相關內容都總結起來了,自己多動手還是好。 (1)普通的內容爬取(2)保存爬取的圖片/
4月12日 python學習總結 繼承和派生
__name__ sch 繼承和派生 utf-8 代碼冗余 空間 校驗 oldboy 示例 一、繼承 什麽是繼承: 繼承是一種新建類的方式,在python中支持一個子類繼承多個父類 新建類稱為子類或派生類 父類可以稱之為基類或
4月16日 python學習總結 封裝之property、多態 、classmethod和staticmethod
.get 控制 radi code 學習 eth setter mysql area 一、封裝之property @property把一個函數偽裝成一個數據類型 @偽裝成數據的函數名.setter 控制該數據的修改,修改該數據時觸發 @偽裝成數據的函數名