首页
/
每日頭條
/
科技
/
python數據類型8種
python數據類型8種
更新时间:2026-03-20 08:51:57

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
推荐阅读
怎麼學畫畫闆繪
怎麼學畫畫闆繪
首先學習闆繪需要的工具:數位闆電腦上工作繪畫的工具,相當于紙和筆電腦繪畫軟件sai和Photoshop是很多大觸常用的電腦繪畫軟件了。電腦繪畫軟件圖标saips接下來就可以開始畫啦線稿鋪色繪制陰影細節高光完成~點贊評論收藏喲~想要進一步學習...
2026-03-20
統計學數據分析報告
統計學數據分析報告
統計學在我們生活中其實運用面還挺廣的,比如社會調查的結果分析都會運用到統計學的知識。我們今天就來分享一下統計學的一些基礎的知識。大緻而言,統計學由“描述統計”和“推論統計”兩部分構成。描述統計就是從取得的數據中抽取其特征的技術。推論統計是将...
2026-03-20
華為手機可以隔空截屏麼
華為手機可以隔空截屏麼
當大家使用手機上網時,在網絡上刷到一些好玩的東西,總是會喜歡截屏,然後分享好友。那麼大家最常用的截屏方法有哪些呢?華為手機目前已經可以進行隔空截屏,不知道大家有沒有嘗試過呢?手指完全不需要觸碰手機,即可完成截屏操作,聽起來是不是很玄幻,那就...
2026-03-20
烘焙小白必備工具
烘焙小白必備工具
玩烘焙需要用到的工具數不勝數。我們來聊一下新手家庭烘焙需要的工具。1.烤箱。烤箱是烘焙必備,烤箱烘培的主力軍,很多時候都是要烤箱烘焙而成,是不可或缺的存在。最好選擇可以調節上下火的烤箱,容量方面可以根據自己需要購買。注意不要買太小的,要不然...
2026-03-20
iphone怎麼更換手機鈴聲
iphone怎麼更換手機鈴聲
很多果粉還不知道怎麼給你的iPhone更換自己喜歡的鈴聲,今天就給教大家兩種更換iPhone來電鈴聲的方法。▷利用快捷指令支持系統:iOS12以上首先需要在你的手機上下載「快捷指令」應用和iPhone自帶應用「庫樂隊」,在APPstore搜...
2026-03-20
Copyright 2023-2026 - www.tftnews.com All Rights Reserved