numbes:
integer
float point
complex: e.g. (-5+4j)
strings:
單引號雙引號用法一致,
三個單引號或三個雙引號表示多行字串
'''first line
second line,
third line.
raw strings:讓轉義字元變為一般字元
r'newlines are indicate by \n',列印結果為newlines are indicate by \n
一旦建立乙個string,就不能改變它。
format方法
age = 25
name = 'swaroop'
print(' is years old'.format(name,age))
結果:swaroop is 25 years old
不需要宣告或定義變數的資料型別
縮排:python通過縮進來區分每一組語句,而不是像c++中的大括號{}
縮排可以用tab或空格,一般使用4個空格
Python基礎 資料型別
1 數字 2 是乙個整數的例子。長整數 不過是大一些的整數。3.23和52.3e 4是浮點數的例子。e標記表示10的冪。在這裡,52.3e 4表示52.3 10 4。5 4j 和 2.3 4.6j 是複數的例子,其中 5,4為實數,j為虛數,數學中表示複數是什麼?int 整型 在32位機器上,整數的...
Python 基礎資料型別
數字 整數 int,long 整數在python3 沒有大小長度分別,記憶體決定整數最大長度 浮點數 float 具有小數點的數 無窮小數會做精度處理 布林 bool 非空非0為真,0或空為假 複數 complex 複數的標誌為虛部以大寫j 或小寫j結尾 字串 str 表示方式 使用單引號 abc ...
python基礎 資料型別
增 name name.insert index,element 元素刪 name.pop index default last name.remove element del name index names.clear 清空列表 del names 刪除列表改 name index newval...