首页
/
每日頭條
/
科技
/
python數據類型8種
python數據類型8種
更新时间:2026-06-14 18:34:46

python數據類型8種?>>> type(1 1.0) <class 'float'> >>> type(4/2) <class 'float'> >>> type(24//2) <class 'int'> >>> 4/2 2.0 >>> 4//2 2 >>> >>> 1//2 0,今天小編就來說說關于python數據類型8種?下面更多詳細答案一起來看看吧!

python數據類型8種(python編程基本數據類型)1

python數據類型8種

(一)數字整形和浮點型
  • 整數:int (python沒有數字範圍short long)
  • 浮點型:float(python沒有單精度float和雙精度double之分)

>>> type(1 1.0) <class 'float'> >>> type(4/2) <class 'float'> >>> type(24//2) <class 'int'> >>> 4/2 2.0 >>> 4//2 2 >>> >>> 1//2 0

  • / 是除法,得到浮點數
  • // 是整除,是得到整數
(二)計算機基礎知識 10、2、8、16進制的表示和轉換

>>> 0b10 2 >>> 0o10 8 >>> 0x10 16

  • 它們之間如何進行轉換

>>> bin(0b100) '0b100' >>> oct(0o100) '0o100' >>> int(100) 100 >>> hex(0xf) '0xf'

(三) 數字布爾類型和複數
  • bool 布爾類型:表示真True和假False
  • complex 複數

>>> type(True) <class 'bool'> >>> type(False) <class 'bool'>

  • 為什麼bool歸在數字裡面呢?

>>> int(False) 0 >>> int(True) 1 >>> bool(0) # 0 表示false False >>> bool(1) True >>> bool(-1) True >>> bool(2) True

  • 空值表示false

>>> bool(0x0) False >>> bool("") False >>> bool([]) False >>> bool({}) False >>> bool(()) False >>> bool(None) False

  • 複數的表示 j

>>> 36j 36j >>> type(36j) <class 'complex'>

(四) 字符串單引号和雙引号
  • str 字符串
  • 如何表示字符串:單引号、雙引号、三引号

>>> type('2') <class 'str'> >>> type(1) <class 'int'>

  • 為什麼需要這麼多引号,如果我的it‘s 需要一個引号,外部則需要雙引号

>>> "it's good" "it's good"

  • 如果隻想要單引号,使用轉義字符

>>> 'it\'s good' "it's good"

(五) 多行字符串
  • 一行字符79,需要使用三引号解決多行

>>> """ ... ni hao ... hello ... hi""" '\nni hao\nhello\nhi'

  • \n 表示回車
  • 加入轉義字符,還是會原本的輸出

>>> """ nihao \n hi""" ' nihao \n hi'


  • 使用print,可以把轉義字符輸出

>>> print(""" nihao \n hi""") nihao hi

  • 字符串換行,使用\ 編輯,不會報錯

>>> 'ni\ ... hao' 'nihao'

(六) 轉義字符
  • 特殊字符
  • 無法看到的字符

\n 換行,\t 橫向制表符, \r 回車

  • 與語言本身語法有沖突的字符

\' 單引号

  • 如果想把\n進行輸出,需要加上\進行轉義

>>> print("hello \n world") hello world >>> print("hello \\n world") hello \n world

(七) 原始字符串
  • 輸出文件路徑,可以使用\, 或者r(使用r值後,字符串變成了原始字符串)

>>> print("c:\north\no.py") c: orth o.py >>> print("c:\\north\\no.py") c:\north\no.py >>> print(r"c:\\north\\no.py") c:\\north\\no.py

(八) 字符串運算
  • 字符串的基本操作方法

>>> "hello" "world" 'helloworld' >>> "hello"*2 'hellohello'

  • 獲取字符串中的字符,使用[],序号從0開始,右邊從-1開始(表示從末尾開始查找的第一個)

>>> "hello"[0] 'h' >>> "hello"[1] 'e' >>> "hello"[-1] 'o'

  • 獲取一組字符,不取尾巴

>>> "hello world"[0:5] 'hello' >>> "hello world"[0:-3] 'hello wo'

,
Comments
Welcome to tft每日頭條 comments! Please keep conversations courteous and on-topic. To fosterproductive and respectful conversations, you may see comments from our Community Managers.
Sign up to post
Sort by
Show More Comments
推荐阅读
iphonese現在是否值得購買
iphonese現在是否值得購買
前兩天我們在微博發了對于新款iPhoneSE初次體驗的感受,很多人對SE的性能、影像等比較好奇。3天實際使用體驗後,今天我們就來聊聊關于它的方方面面,看看3299元的新款iPhoneSE到底值不值得買~▼▼視頻時長:9'29'...
2026-06-14
抖音如何允許别人下載自己的視頻
抖音如何允許别人下載自己的視頻
抖音如何允許别人下載自己的視頻?首先點擊手機桌面中的抖音短視頻,今天小編就來說說關于抖音如何允許别人下載自己的視頻?下面更多詳細答案一起來看看吧!抖音如何允許别人下載自己的視頻首先點擊手機桌面中的抖音短視頻。然後點擊屏幕右下方的我。接着點擊...
2026-06-14
傳播淫牟利十萬左右判多久
傳播淫牟利十萬左右判多久
點擊右上方字體“關注”,即可免費閱覽和獲取《運城新觀察》最新資訊。黑龍江齊齊哈爾的一對情侶,防疫期間居家隔離,把自己制作的不雅視頻發到了網上賣錢,結果把警察引上門了。3月13日,黑龍江省齊齊哈爾市公安局龍沙分局接到線索,有人制作不雅視頻,并...
2026-06-14
翻轉門的安裝方法
翻轉門的安裝方法
翻轉門的安裝方法?首先用螺絲刀把三合一螺絲一端擰進兩邊側闆裡固定好,把後背上下橫條的兩側邊的小洞穿進一側闆對應的三合一螺絲裡面,固定好背後上下橫條闆,擰上圓形螺絲鎖扣,前面的下橫條闆也是一樣的固定方式,裝上即可,接下來我們就來聊聊關于翻轉門...
2026-06-14
360手機衛士能保護網絡安全嗎
360手機衛士能保護網絡安全嗎
在PC時代,電腦的右下方長時間由QQ、360安全衛士、搜狗輸入法,這三個應用同時霸占着!在那幾年,隻要買個新電腦,第一步要做就是要下載這三個軟件,感覺隻有安裝好這三個應用,電腦才算開始正式使用。在3G時代,這個三個軟件在手機使用過程中,同樣...
2026-06-14
Copyright 2023-2026 - www.tftnews.com All Rights Reserved