首页
/
每日頭條
/
科技
/
python數據類型8種
python數據類型8種
更新时间:2025-03-12 13:50:50

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
推荐阅读
目前哪些手機支持wifi 6e
目前哪些手機支持wifi 6e
蘋果的硬件軟件都是可控的技術,産品向來都有着一整套的盈利模式,,數碼産品的配件也必須帶有蘋果的标準認證,最常見的就是蘋果的數據線,大廠商都必須通過蘋果的MFi認證,但認證過去的廠商少之又少,不認證的數據線用一般時間就不會不能使用,手機提示此...
2025-03-12
u啟動安裝系統步驟
u啟動安裝系統步驟
u啟動安裝系統步驟?做系統有三種方法,分别是光盤方法、U盤安裝以及硬盤解壓方法,最簡單的是u盤安裝系統的方法,接下來小編跟大家介紹怎麼自己在家做系統的方法,現在小編就來說說關于u啟動安裝系統步驟?下面内容希望能幫助到你,我們來一起看看吧!u...
2025-03-12
我的世界火把照明距離
我的世界火把照明距離
在《我的世界》中是不是一個人在寂靜的夜晚感到害怕呢?身邊不斷傳來生物的叫聲,火把并不能帶來安全感。這個時候就需要一些MC黑科技了,這些方法可以讓你的夜晚不再害怕,而且光亮在我的世界的夜晚中非常重要,那麼到底是什麼辦法呢?我們一起來看一下吧!...
2025-03-12
gta6飛機墜落
gta6飛機墜落
IT之家9月28日消息,近日,一位匿名用戶在GTA論壇發布了一個多小時的《GTA6》開發視頻,可能會成為遊戲行業有史以來最引人注目的數據洩露事件之一。英國警方已經證實,他們已經指控一名因涉嫌黑客行為而被捕的青少年,據一份報告稱,這與最近的《...
2025-03-12
youtube獎勵機制
youtube獎勵機制
你好,我是認真努力學習自媒體YouTube運營攻略的“油管小生”。現在研究YouTube賺錢攻略的人越來越多,我一直在努力學習YouTube的運營技巧,如果你也和我一樣想學習YouTube賺錢方法和運營技巧,那麼就請訂閱我一起探讨學習吧。油...
2025-03-12
Copyright 2023-2025 - www.tftnews.com All Rights Reserved