0、
python注釋:
單行:#
多行:''' '''
1、字面常量:字面上的意義
2、數字:int 和 floats
3、字串:'' or " " (the same)
多行字串:""" or '''
字串不可變
4、格式化方法 format
(name,age )
format
方法所做的事情便是將每個引數值替換至格式所在的位置
name or
age or
5、print自動換行,若不需要
print('a'
, end='') a後輸出空格 print('a',end='
')
6、轉義字元
\ \n :換行 \t:製表符 於行末:該行繼續
'what
\'s your name?' 如果:輸出
what
's your name?
7、原始字串
讓字元按其表面意思來使用
for example:
8、變數
print(r'newlines are indicated by \n')
輸出:newlines are indicated by
\n
print(
'newlines are indicated by \n') \n換行
輸出:newlines are indicated by
>>>
識別符號:字元、下劃線、數字
9、資料型別
數字(整數、浮點數)and 字串
10、物理行:我看到的
邏輯行:python看到的
一行執行乙個語句
若一行執行多個,用 ;隔開
for example:
i= 5
print(i)
#the same as
i = 5;print(i);
11、顯示行連線
i = 5
#the same as
i =\
5
Python基礎 學習筆記1
第八章 異常 1 注 這裡的迴圈只在沒有異常引發的情況下才會退出,而且使用expect exception,列印更加有用的資訊 while true try x input enter the first number y input enter the second number value x ...
python 基礎學習筆記(1)
init 初始化 init 方法在類的乙個物件被建立時,馬上執行。這個方法可以用來對你的物件做一些你希望的 初始化 解釋 當乙個class,稍微複雜一點的時候,或者內部函式需要用得到的時候,往往都需要在,別人例項化你這個類之前,使用你這個類之前,做一些基本的,與自己的類有關的,初始化方面的工作。而這...
python學習筆記(基礎 1)
python為我們提供了非常完善的基礎 庫,覆蓋了網路 檔案 gui 資料庫 文字等大量內容,被形象地稱作 內建電池 batteries included 1.python是解釋性語言,你的 在執行時會一行一行地翻譯成cpu能理解的機器碼,這個翻譯過程非常耗時,所以很慢。而c程式是執行前直接編譯成c...