這篇“python原始數(shù)據(jù)和復雜數(shù)據(jù)是什么”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“python原始數(shù)據(jù)和復雜數(shù)據(jù)是什么”文章吧。
成都創(chuàng)新互聯(lián)公司是一家專注于成都做網(wǎng)站、網(wǎng)站建設(shè)與策劃設(shè)計,沙灣網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)10年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:沙灣等地區(qū)。沙灣做網(wǎng)站價格咨詢:13518219792
Undefined 與 Null 的區(qū)別
Undefined 與 null 的值相等,但類型不相等:
typeof undefined // undefined
typeof null // object
null === undefined // false
null == undefined // true
原始數(shù)據(jù)
原始數(shù)據(jù)值是一種沒有額外屬性和方法的單一簡單數(shù)據(jù)值。
typeof 運算符可返回以下原始類型之一:
string
number
boolean
undefined
實例
typeof "Bill" // 返回 "string"
typeof 3.14 // 返回 "number"
typeof true // 返回 "boolean"
typeof false // 返回 "boolean"
typeof x // 返回 "undefined" (假如 x 沒有值)
復雜數(shù)據(jù)
typeof 運算符可返回以下兩種類型之一:
function
object
typeof 運算符把對象、數(shù)組或 null 返回 object。
typeof 運算符不會把函數(shù)返回 object。
實例
typeof {name:'Bill', age:62} // 返回 "object"
typeof [1,2,3,4] // 返回 "object" (并非 "array",參見下面的注釋)
typeof null // 返回 "object"
typeof function myFunc(){} // 返回 "function"
typeof 運算符把數(shù)組返回為 "object",因為在 JavaScript 中數(shù)組即對象。
以上就是關(guān)于“python原始數(shù)據(jù)和復雜數(shù)據(jù)是什么”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。