Important Notice:

Python Built-in Data Types

Python Built-in Data Types

1 views 1 min read

Python Built-in Data Types :-

Data Type (डेटा टाइप) यह निर्धारित करता है कि किसी Variable (वेरिएबल) में किस प्रकार का Data (डेटा) संग्रहित किया जाएगा। प्रत्येक Data Type की अपनी विशेषताएँ (Properties), कार्य (Operations) तथा उपयोग (Applications) होते हैं।

Python एक Dynamically Typed Language (डायनेमिकली टाइप्ड भाषा) है। इसका अर्थ है कि Variable का Data Type पहले से घोषित (Declare) नहीं करना पड़ता। Python स्वयं Variable में संग्रहित Value के आधार पर उसका Data Type निर्धारित कर लेता है।

English

A Data Type defines the type of value that can be stored in a Variable. Every data type has its own properties, operations, and applications.

Python is a Dynamically Typed Language, which means you do not need to declare the data type of a variable explicitly. Python automatically determines the data type based on the assigned value.

Related Notes