摘要:數(shù)字整型與浮點(diǎn)型整數(shù)沒(méi)有之分浮點(diǎn)數(shù)里面沒(méi)有單精度和雙精度之分表示整除進(jìn)制進(jìn)制,進(jìn)制,進(jìn)制,進(jìn)制,,,。。。。
Number:數(shù)字 1)整型與浮點(diǎn)型
>>> print("hello world") hello world >>> 1 1 >>> 133434 133434 >>> type(1)2)10、2、8、16進(jìn)制>>> type(-1) >>> type(1.1) >>> type(1.111111111111111111) >>> type(1+0.1) >>> type(1+1) >>> type(1+1.0) >>> type(1*1) >>> type(1*1.0) >>> type(2/2) >>> type(2//2) >>> 2/2 1.0 >>> 2//2 1 >>> 1//2 //表示整除 0
>>> 10進(jìn)制,2進(jìn)制,8進(jìn)制,16進(jìn)制 SyntaxError: invalid character in identifier >>> 0,1,2,3。。。。9,10 SyntaxError: invalid character in identifier >>> 0,1,10 SyntaxError: invalid character in identifier >>> 0,1。。。。7,10 SyntaxError: invalid character in identifier >>> 0,1,2.。。。。。。。9,A,B,C,D,E,F SyntaxError: invalid character in identifier
>>> 0b10 2 >>> 0b11 3 >>> 0o10 8 >>> 0o11 9 >>> 0x10 16 >>> 0x11 17
轉(zhuǎn)換為二進(jìn)制
>>> bin(10) "0b1010" >>> bin(0o7) "0b111" >>> bin(0xE) "0b1110"
轉(zhuǎn)換為十進(jìn)制
>>> int(0b111) 7 >>> int(0o77) 63
轉(zhuǎn)換為十六進(jìn)制
>>> hex(888) "0x378" >>> hex(0o7777) "0xfff"
轉(zhuǎn)換為八進(jìn)制
>>> oct(0b111) "0o7" >>> oct(0x777) "0o3567"3)bool 布爾類(lèi)型(數(shù)字類(lèi)型的一種):表示真、假
>>> True True >>> False False >>> true Traceback (most recent call last): File "4)complex 復(fù)數(shù)", line 1, in true NameError: name "true" is not defined >>> false Traceback (most recent call last): File " ", line 1, in false NameError: name "false" is not defined >>> type(True) >>> type(False) >>> int(True) 1 >>> int(False) 0 >>> bool(1) True >>> bool(0) False >>> bool(2) True >>> bool(-1.1) True >>> bool(0b01) True >>> bool(0b0) False >>> bool("abc") True >>> bool("") False >>> bool([1,2,3]) True >>> bool([]) False >>> bool({1,1,1}) True >>> bool({}) False >>> bool(None) False
>>> 36j 36jstr 字符串 1)單引號(hào)
>>> "hello world" "hello world" >>> "let"s go" "let"s go"2)雙引號(hào)
>>> "hello world" "hello world" >>> "let"s go" SyntaxError: invalid syntax >>> "let"s go" "let"s go"3)三引號(hào)(多行字符串)
>>> """ hello world hello world hello world """ " hello world hello world hello world " >>> """ hello world hello world hello world """ " hello world hello world hello world " >>> """hello world hello world hello world""" "hello world hello world hello world" >>> print("""hello world hello world hello world""") hello world hello world hello world >>> print("""hello world hello world hello world""") hello world hello world hello world >>> print("hello world hello world hello world") hello world hello world hello world >>> """hello world hello world""" "hello world hello world" >>> "hello SyntaxError: EOL while scanning string literal >>> "hello world" "helloworld"4)轉(zhuǎn)義字符(特殊的字符)
n 換行
" 單引號(hào)
t 橫向制表符
n 換行
r 回車(chē)
>>> print("hello world") hello world >>> print(""hello world"") "hello world" >>> print(""hello world"") "hello world" >>> print("hello world") hello world >>> print("c: orthwind orthwest") c: orthwind orthwest >>> print("c: orthwind orthwest") c: orthwind orthwest >>> print(r"c: orthwind orthwest") c: orthwind orthwest >>> r"C:Windows" "C:Windows" >>> R"C:Windows" "C:Windows" //字符串前加上“r”以后就不是一個(gè)普通字符串,而是一個(gè)原始字符串 >>> print(r" let "s go") SyntaxError: invalid syntax //這里的單引號(hào)不是成對(duì)出現(xiàn),已經(jīng)不是一個(gè)字符串,加上“r”也不會(huì)是原始字符串字符串運(yùn)算 一
>>> "hello" "hello" >>> "world" "world" >>> "hello world" "hello world" >>> "hello"+"world" "helloworld" >>> "hello"*3 "hellohellohello" >>> "hello" * "world" Traceback (most recent call last): File "字符串運(yùn)算 二", line 1, in "hello" * "world" TypeError: can"t multiply sequence by non-int of type "str" >>> "hello world"[0] "h" >>> "hello world"[3] "l" >>> "hello world"[4] "o" >>> "hello world"[5] " " >>> "hello world"[-1] "d" >>> "hello world"[-3] "r" //[-n]表示從字符串的末尾往前數(shù)n次得到的字符
>>> "hello world"[6] "w" >>> "hello world"[-5] "w" >>> "hello world"[0:4] "hell" >>> "hello world"[0:5] "hello" >>> "hello world"[0:-1] "hello worl" //這里的-1表示步長(zhǎng) >>> "hello world"[0:-3] "hello wo"字符串運(yùn)算 三
>>> "hello world"[6:10] "worl" >>> "hello world"[6:11] "world" >>> "hello world"[6:20] "world" >>> "hello world"[6:-1] "worl" >>> "hello world"[6:0] "" >>> "hello world"[6:-0] "" >>> "hello world"[6:] "world" >>> "hello python java c# javascript php ruby"[6:] "python java c# javascript php ruby" >>> "hello python java c# javascript php ruby"[:-4] "hello python java c# javascript php " >>> "hello python java c# javascript php ruby"[0:-4] "hello python java c# javascript php " >>> "hello python java c# javascript php ruby"[-4:] "ruby"
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/44770.html
摘要:一的基本語(yǔ)法縮進(jìn)統(tǒng)一個(gè)或者個(gè)空格。中的數(shù)據(jù)類(lèi)型中有個(gè)標(biāo)準(zhǔn)類(lèi)型數(shù)字字符串列表元組集合字典數(shù)字復(fù)數(shù)在中,只有一種整數(shù)類(lèi)型,表示長(zhǎng)整型。如則會(huì)顯示,并不是換行。空行與代碼縮進(jìn)不同,空行并不是語(yǔ)法的一部分。我們將首行及后面的代碼組稱(chēng)為一個(gè)子句。 一、python3的基本語(yǔ)法 1、縮進(jìn)統(tǒng)一(1個(gè)tab或者4個(gè)空格)。 for i in range(10): print (i) ...
摘要:基本數(shù)據(jù)類(lèi)型基本數(shù)據(jù)類(lèi)型比較簡(jiǎn)單,通過(guò)以下例子演示運(yùn)行結(jié)果如下通用序列操作索引通過(guò)索引獲取序列的單個(gè)元素,也可以使用負(fù)數(shù)索引。設(shè)置參數(shù)步長(zhǎng),負(fù)數(shù)步長(zhǎng)表示從右側(cè)開(kāi)始提取元素。注意相同類(lèi)型的序列才可以進(jìn)行連接操作。 showImg(https://segmentfault.com/img/bV09Mw?w=805&h=327); 0. 基本數(shù)據(jù)類(lèi)型 基本數(shù)據(jù)類(lèi)型比較簡(jiǎn)單,通過(guò)以下例子演示:...
摘要:的基本數(shù)據(jù)類(lèi)型中的變量不需要聲明。在里,只有一種整數(shù)類(lèi)型,表示為長(zhǎng)整型,沒(méi)有中的。字符串的截取的語(yǔ)法格式如下變量頭下標(biāo)尾下標(biāo)索引值以為開(kāi)始值,為從末尾的開(kāi)始位置。列表列表是中使用最頻繁的數(shù)據(jù)類(lèi)型。注意構(gòu)造包含或個(gè)元素的元組的特殊語(yǔ)法規(guī)則。 1、python3的基本數(shù)據(jù)類(lèi)型 Python 中的變量不需要聲明。每個(gè)變量在使用前都必須賦值,變量賦值以后該變量才會(huì)被創(chuàng)建。在 Python 中,...
馬上就要開(kāi)始啦這次共組織15個(gè)組隊(duì)學(xué)習(xí) 涵蓋了AI領(lǐng)域從理論知識(shí)到動(dòng)手實(shí)踐的內(nèi)容 按照下面給出的最完備學(xué)習(xí)路線(xiàn)分類(lèi) 難度系數(shù)分為低、中、高三檔 可以按照需要參加 - 學(xué)習(xí)路線(xiàn) - showImg(https://segmentfault.com/img/remote/1460000019082128); showImg(https://segmentfault.com/img/remote/...
摘要:是你學(xué)習(xí)從入門(mén)到專(zhuān)家必備的學(xué)習(xí)路線(xiàn)和優(yōu)質(zhì)學(xué)習(xí)資源。的數(shù)學(xué)基礎(chǔ)最主要是高等數(shù)學(xué)線(xiàn)性代數(shù)概率論與數(shù)理統(tǒng)計(jì)三門(mén)課程,這三門(mén)課程是本科必修的。其作為機(jī)器學(xué)習(xí)的入門(mén)和進(jìn)階資料非常適合。書(shū)籍介紹深度學(xué)習(xí)通常又被稱(chēng)為花書(shū),深度學(xué)習(xí)領(lǐng)域最經(jīng)典的暢銷(xiāo)書(shū)。 showImg(https://segmentfault.com/img/remote/1460000019011569); 【導(dǎo)讀】本文由知名開(kāi)源平...
閱讀 3529·2021-09-27 13:35
閱讀 3567·2019-08-29 17:09
閱讀 2438·2019-08-26 11:30
閱讀 708·2019-08-26 10:32
閱讀 540·2019-08-26 10:23
閱讀 1202·2019-08-26 10:20
閱讀 3159·2019-08-23 15:26
閱讀 3565·2019-08-23 14:33