python學習 一 變數和資料型別

2021-07-09 06:32:48 字數 2339 閱讀 2234

資料型別

print

45678+0x12fd2

#整形print

"learn python in imooc."

#字串

print

100<99

#布林型

123456

learn python in imooc.

false

輸出

#input code

print

"hello,python"

print

"hello,","python"

hello,python

hello, python

注釋

#hello
字串

普通字串

s = 'python was started in

1989 by "guido".\npython is free and easy to learn.'

print s

python was started in

1989

by"guido".

python is free and easy to learn.

2.raw字串與多行字串(相當於原樣輸出)

print

r'''"to be, or not to be": that is the question.

whether it's nobler in the mind to suffer.'''

is

the question.

whether it's nobler in

the mind to suffer.

整數和浮點數

和數**算不同的地方是,python的整數運算結果仍然是整數,浮點數運算結果仍然是浮點數

1 + 2 # ==> 整數

1.0+ 2.0 # ==> 浮點數 3.0

整形數和浮點數混合運算的結果就變成浮點

1 + 2.0 # ==> 浮點數 3.0

要區分整數運算和浮點數運算呢?這是因為整數運算的結果永遠是精確的,而浮點數運算的結果不一定精確,因為計算機記憶體再大,也無法精確表示出無限迴圈小數,比如 0.1 換成二進位制表示就是無限迴圈小數。

那整數的除法運算遇到除不盡的時候,結果難道不是浮點數嗎?

`11 / 4 # ==> 2

初學者驚訝的是,python的整數除法,即使除不盡,結果仍然是整數,餘數直接被扔掉。不過,python提供了乙個求餘的運算 % 可以計算餘數

11 % 4 # ==> 3

我們要計算 11 / 4 的精確結果,按照「整數和浮點數混合運算的結果是浮點數」的法則,把兩個數中的乙個變成浮點數再運算就沒問題了:

11.0 / 4    # ==> 2.75
布林型別

與運算:只有兩個布林值都為 true 時,計算結果才為 true。

true

andtrue

# ==> true

true

andfalse

# ==> false

false

andtrue

# ==> false

false

andfalse

# ==> false

或運算:只要有乙個布林值為 true,計算結果就是 true。

true

ortrue

# ==> true

true

o***lse

# ==> true

false

ortrue

# ==> true

false

o***lse

# ==> false

非運算:把true變為false,或者把false變為true:

not

true

# ==> false

notfalse

# ==> true

Python語法基礎(一) 變數和資料型別

本文開始介紹python的語法,了解python的變數定義和簡單資料型別。python 變數是不需要宣告資料型別的,由變數的值決定變數的型別。定義變數 str helloworld!列印變數 print str 注 python是不區分單引號和雙引號的。numbers 數值型別 string 字串 ...

Python學習筆記(一) 變數

本文所有程式都是基於pycharm編譯器和python3.6.6編寫的。引出變數時不需要申明變數的資料型別,但必須給變數賦值。先給變數起個名字,起名字要遵循一下原則 由字母 數字 下劃線組成,變數名不能以數字開頭 區分大小寫。如 a和a是兩個變數 不能包含空格 不能是python中的關鍵字。如 fo...

Python學習筆記(一) 變數

python語言允許在任何地方插入空字元和注釋,但不能插入到識別符號和字串中間。python源 的注釋由兩種形式 python使用井號 表示單行注釋的開始,跟在 號後面直到這行結束為止的 都將被直譯器忽略。單行注釋就是在程式中注釋一行 在python程式中將 號放在需要注釋的內容之前就可以了。多行注...