首页
/
每日頭條
/
科技
/
python數據類型8種
python數據類型8種
更新时间:2026-07-05 20:53:27

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
推荐阅读
如何快速制作抖音封面
如何快速制作抖音封面
如何快速制作抖音封面?如今是一個短視頻的時代,玩抖音快手等視頻的人也日趨增多想要做好一個抖音視頻,封面占很重要的一部分俗話說,人靠衣裝馬靠鞍,一個好看的抖音封面,就比如一件好看的衣服,穿在身上很漂亮,自然給别人留下一個好的印象因此好看的封面...
2026-07-05
會員打折時間
會員打折時間
會員打折時間?原标題:視聽“增值服務”花樣百出,“增收項目”五花八門,用戶權益卻被設置各種限制(引題),接下來我們就來聊聊關于會員打折時間?以下内容大家不妨參考一二希望能幫到您!會員打折時間原标題:視聽“增值服務”花樣百出,“增收項目”五花...
2026-07-05
關于未來消防科技的知識
關于未來消防科技的知識
【#關鍵時刻救命的消防科技#】科技賦能下的消防産品正在悄悄改變着人們的生活。這些消防黑科技在“防患”與“救援”等方面,發揮着重要的作用。一起來了解下那些#藍朋友無法拒絕的消防科技#​​​,
2026-07-05
如何恢複手機原來收藏的網址
如何恢複手機原來收藏的網址
如何恢複手機原來收藏的網址?打開手機,找到雲服務,點擊并進入,我來為大家科普一下關于如何恢複手機原來收藏的網址?下面希望有你要的答案,我們一起來看看吧!如何恢複手機原來收藏的網址打開手機,找到雲服務,點擊并進入。進入之後,打開浏覽器書簽備份...
2026-07-05
如何一鍵将轉成文字
如何一鍵将轉成文字
視頻轉文字的方法有哪些?如今正是短視頻發展得如火如荼的時代。相信大家都開始在網上記錄自己的生活,但是一個短視頻從拍攝到發布并沒有想象中那麼容易,尤其是視頻的後期字幕剪輯。如果隻靠聽取再轉寫成文字,不僅費時費力,出錯還得從頭再來。久而久之,難...
2026-07-05
Copyright 2023-2026 - www.tftnews.com All Rights Reserved