python的基礎學習 二 資料型別

2021-10-12 16:23:05 字數 2735 閱讀 8435

python3中有六個標準的資料型別:

number(數字)

string(字串)

list(列表)

tuple(元組)

dictionmary(字典)

set(集合)

在這六個資料型別中:

a =

3b =

3.0c =

true

d =3+4j

print

(type

(a),

type

(b),

type

(c),

type

(d))

>輸出:

<

class

'int'

>

<

class

'float'

>

<

class

'bool'

>

<

class

'complex'

>

變數[頭下標:尾下標]

str

='runoob'

print

(str

)# 輸出字串

print

(str[0

:-1]

)# 輸出第乙個到倒數第二個的所有字元

print

(str[0

])# 輸出字串第乙個字元

print

(str[2

:5])

# 輸出從第三個開始到第五個的字元

print

(str[2

:])# 輸出從第三個開始的後的所有字元

print

(str*2

)# 輸出字串兩次,也可以寫成 print (2 * str)

print

(str

+"test"

)# 連線字串

>輸出:

runoob

runoo

rnoo

noob

runoobrunoob

runoobtest

bicycles =

['trek'

,'cannondale'

,'redline'

,'specialized'

]print

(bicycles[0]

)> 輸出:trek

bicycles =

['trek'

,'cannondale'

,'redline'

,'specialized'

]print

(bicycles[0:

2])>輸出:

['trek'

,'cannondale'

]

bicycles =

('trek'

,'cannondale'

,'redline'

,'specialized'

)print

(bicycles[0]

)print

(bicycles[0:

2])> 輸出:

trek

('trek'

,'cannondale'

)

bicycles =

('trek'

,'cannondale'

,'redline'

,'specialized'

)print

(bicycles)

bicycles =

('bike'

,'car'

,'plane'

)print

(bicycles)

> 輸出:

('trek'

,'cannondale'

,'redline'

,'specialized')(

'bike'

,'car'

,'plane'

)

student =

print

(student[

'***'

], student[

'age'])

> 輸出:

man 18

student[

'weight']=

'50kg'

print

(student)

> 輸出:

del student[

'age'

]print

(student)

> 輸出:

a =

set(

'abracadabra'

)b =

set(

'alacazam'

)print

(a)print

(a - b)

print

(a | b)

print

(a & b)

print

(a ^ b)

> 輸出:

Python基礎學習 類

1.類的名稱 類名 2.類的屬性 指物件的特徵 一組資料 3.類的方法 允許物件進行操作的方法 行為 功能 class myclass x 16 定義類變數 y python class defmyfun self 定義類方法 return hello python a myclass 例項化類 訪...

Python的基礎學習 七 類

3.繼承 4.匯入類 類是物件導向程式設計的一大特色。在物件導向程式設計中,你編寫表示現實世界中的事物和情景的類,並基於這些類來建立物件。基於類建立物件時,每個物件都自動具備這種通用行為,然後可根據需要賦予每個物件獨有的個性。根據類建立物件被稱為例項化。class dog def init self...

PHP 基礎類學習二

單件模式要解決的問題就是 如何讓這個類只有乙個例項 我們的web應用中,大量使用了資料庫連線,如果反覆建立與資料庫的連線必然消耗更多的系統資源。所以建立唯一的資料庫連線是必要的方式。我們又如何知道與這個資料庫的連線是否已經建立?還是需要現在建立?單件模式可以解決這個問題。先假設我們需要乙個類完成在記...