python中的各種符號

2022-04-19 04:26:11 字數 1436 閱讀 9679

在這裡所作的是將所有的 python 符號和關鍵字列出來,這些都是值得掌握的重點。

關鍵字

and

del

from

 not

 while

 as

 elif

 global

 or

 with

 assert

 else

 if

 pass

 yield

 break

 except

 import

 print

 class

 exec

 in

 raise

 continue

 finally

 is

 return

 def

 for

 lambda

 try

資料型別

 true

 false

 none

 strings

 numbers

 floats

 lists

字串轉義序列(escape sequences)

 \\

 \

' \"

 \a

 \b

 \f

 \n

 \r

 \t

 \v

字串格式化(string formats)

 %d -------》 數字

 %i

 %o

 %u

 %x

 %x

 %e

 %e

 %f --------》 小數

 %f

 %g

 %g

 %c

 %r ----------》%r 呼叫 rper函式列印字串,repr函式返回的字串是加上了轉義序列,是直接書寫的字串的形式

 %s ----------》%s 呼叫 str函式列印字串,str函式返回原始字串

 %%操作符號

 + - * ** / // %

< >

<= >= == !=

<> ( )

 [ ]

  @

 ,

 :

 .

 = ;

 += -= *= /= //= %= **=

Python中各種符號的意義

python中的各種符號總結如下 運算子描述 例項算術運算子 加 兩個物件相加 a b 輸出結果 30 減 得到負數或是乙個數減去另乙個數 a b 輸出結果 10 乘 兩個數相乘或是返回乙個被重複若干次的字串 a b 輸出結果 200 除 x除以y b a 輸出結果 2 取模 返回除法的餘數 b a...

makefile 中各種賦值符號的區別

在makefile中我們經常看到 這幾個賦值運算子,那麼他們有什麼區別呢?我們來做個簡單的實驗 新建乙個makefile,內容為 ifdef define vre vre hello world else endif ifeq opt define vre hello world first end...

shell中各種奇怪的符號整理

子shell中執行 數值比較,運算,支援正則 i 1 i 3 i commond1 commond2 命令替換 commond 支援運算 1 2 集合,可將命令與字串隔開 變數的引用 檔案測試,數值比較,檔案比較,字串比較 a 且,o 或 增加了對正則的支援,包含,或,且 支援變數運算 2 2 2 ...