Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is python raw data and complex data?

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

Most people do not understand the knowledge points of this article "what is python raw data and complex data", so the editor summarizes the following contents, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "what is python raw data and complex data" article.

The difference between Undefined and Null

The values of Undefined and null are equal, but the types are not equal:

Typeof undefined / / undefined

Typeof null / / object

Null = undefined / / false

Null = = undefined / / true

raw data

The raw data value is a single simple data value with no additional properties and methods.

The typeof operator can return one of the following primitive types:

String

Number

Boolean

Undefined

Example

Typeof "Bill" / / returns "string"

Typeof 3.14 / / returns "number"

Typeof true / / returns "boolean"

Typeof false / / returns "boolean"

Typeof x / / returns "undefined" (if x has no value)

Complex data

The typeof operator can return one of two types:

Function

Object

The typeof operator returns an object, array, or null to object.

The typeof operator does not return the function to object.

Example

Typeof {name:'Bill', age:62} / / returns "object"

Typeof [1 array 2 3 4] / / returns "object" (not "array", see the note below)

Typeof null / / returns "object"

Typeof function myFunc () {} / / returns "function"

The typeof operator returns the array as "object" because in JavaScript an array is an object.

The above is the content of this article on "what are python raw data and complex data". I believe we all have a certain understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report