Python第一章基礎知識

2021-07-03 03:25:13 字數 365 閱讀 8567

python3.x

1)沒有了raw_input,只有input

2)print是函式,要使用print()而不是print

3)所有的字串都是unicode字串

原始字串可以簡化反斜線的使用,以r開頭,在原始字串的結尾不能使用反斜線

第一章基礎知識   

函式abs

cmath.sqrt()返回平方根,也可以應用於負數

float

input

intmath.ceil 返回數的上入整數,結果的型別為浮點數

math.floor  返回數的下舍整數,結果為浮點型

powrepr/str    將值轉化為字串

round

Python 第一章 基礎知識

如果熟其他計算機語言,可能會習慣於每行以分號結束。python則不同,一行就是一行,不管多少。from future import division 1 2 0.51.4.1 長整型數 1.6 語句 1.7 獲取使用者輸入 input the meaning of life the meaning ...

Python第一章 基礎知識

加法 print 2 2 浮點數 print 1 2 丟棄小數部分,向下圓整 print 1 2 print 5.0 2.4 取餘x y 即為 x x y y print 10 3 print 2.75 0.5 print 10 3 print 10 3 乘方 print 2 3 print 3 2...

第一章 基礎知識

組合語言 第一章 基礎知識 1.3組合語言的組成 組合語言有以下3 類組成 1.彙編指令 機器碼助記符 2.偽指令 由編譯器執行 3.其他符號 右邊一起識別 組合語言的核心是彙編指令,他決定了組合語言的特性 1.4 儲存器 指令和資料在儲存器中存放,也就是平時說的記憶體 磁碟不同於記憶體,磁碟的資料...