關於python的基礎知識1 資料型別

2021-08-07 08:42:09 字數 508 閱讀 7914

python中的資料型別。

python中的5中資料型別:

1、numbers,數字;

2、string,字串;

3、list,列表;

4、tuple,元組;

5、dictionary,字典。

其中,list是最常用的資料型別, dictionary次之。

舉例:numbers:

var1 = 1

var2 = 2

string:

str = 'blog in csdn'

list:

list = ['there', 'are', 7, 'days', 'a', 'week', '.' ]

tuple:

tuple = ('there', 'are', 7, 'days', 'a', 'week', '.')

dictionary:

dict =

說明:以上樣例在pycharm中執行正確。

c c 關於數的基礎知識

一種是用字元的八進位制ascii碼,表示為 0dd.這裡,0dd是八進位制值 0可以省略 另一種使用字元的十六進製制ascii碼值,表示為 xhh或xhh 這裡hh是兩位十六進製制值 如 a 101 和 x41 都表示同乙個字元常量。在c語言中,乙個字元常量代表ascii字符集中的乙個字元,在程式中...

python基礎知識1

學習python語言程式設計 嵩天,黃天宇,禮欣 補充內容 資料型別 例子整形 1 0,10,0xa,0o12,0b1010 浮點型1.27 1.25e9 1.25 10 9 1 2i 複數 字串 a sadf 列表 cat bat rat 1 2 3 元組 abc 1 2.1 字典布林代數 tru...

Python基礎知識(1)

知識要點 數字型別 整數型別 浮點數和複數型別 數字型別的運算 數值運算操作符 數值運算函式 字串型別及格式化 索引 引片 基本的format 格式化方法 字串型別的操作 字串操作符 處理函式和處理函式 型別判斷和型別間轉換 1 數字型別 1 整數 十進位制 1010 二進位制 0b1010 八進位...