Basic Data Types of Python पायथन के बेसिक डेटा टाइप

Data types are an essential part of any programming language as they define the type of data that can be stored in a variable. Python supports several built-in data types, including numeric, boolean, sequence, dictionary, and set data types.
डेटा प्रकार किसी भी प्रोग्रामिंग भाषा का एक अनिवार्य हिस्सा हैं क्योंकि वे डेटा के प्रकार को परिभाषित करते हैं जिसे एक चर में संग्रहीत किया जा सकता है। पायथन कई अंतर्निहित डेटा प्रकारों का समर्थन करता है, जिनमें संख्यात्मक, बूलियन, अनुक्रम, शब्दकोश और सेट डेटा प्रकार शामिल हैं।

In Python, data types are dynamic, meaning the data type of a variable can change at runtime depending on the type of value assigned to it. For example, a variable declared as an integer can later be assigned a string value, and Python will change its data type to a string automatically.
पायथन में, डेटा प्रकार गतिशील होते हैं, जिसका अर्थ है कि किसी वेरिएबल का डेटा प्रकार उसे निर्दिष्ट मान के प्रकार के आधार पर रनटाइम पर बदल सकता है। उदाहरण के लिए, पूर्णांक के रूप में घोषित एक चर को बाद में एक स्ट्रिंग मान सौंपा जा सकता है, और पायथन अपने डेटा प्रकार को स्वचालित रूप से एक स्ट्रिंग में बदल देगा।

Python has several basic data types, including:-
पायथन में कई बुनियादी डेटा प्रकार हैं, जिनमें शामिल हैं:-

1. Integers (`int`):- Whole numbers without decimal points.
पूर्णांक (`int`):- दशमलव बिंदु के बिना पूर्ण संख्याएँ।
x = 5

2. Floating points (`float`):- Numbers with decimal points.
फ़्लोटिंग पॉइंट ('फ़्लोट'):- दशमलव बिंदु वाली संख्याएँ।
y = 3.14

3. Complex numbers `complex` :- Numbers with both real and imaginary parts.
सम्मिश्र संख्याएँ `काम्प्लेक्स`:- वास्तविक और काल्पनिक दोनों भागों वाली संख्याएँ।
x = 2 + 3j

4. Boolean's (`bool`):- Representing True or False values.
बूलियन्स ('बूल'):- सही(True) या गलत(False) मूल्यों का प्रतिनिधित्व करना।
is_true = True

5. Strings (`str`):- Sequences of characters, enclosed in single or double quotes.
स्ट्रिंग्स (`str`):- एकल या दोहरे उद्धरण चिह्नों में संलग्न वर्णों का अनुक्रम।
message = "Hello, Python!"

6. Lists (`list`):- Ordered, mutable collections of different types of elements.
सूचियाँ (`सूची`):- विभिन्न प्रकार के तत्वों का क्रमबद्ध, परिवर्तनशील संग्रह।
numbers = [1, "ajay", 340.5]

7. Tuples (`tuple`):- Ordered, immutable collections of elements.
टपल्स ('ट्यूपल'):- तत्वों का क्रमबद्ध, अपरिवर्तनीय संग्रह।
coordinates = (30.458, 75.186)

8. Dictionaries (`dict`):- Unordered collections of key-value pairs.
शब्दकोष ('dict'):- कुंजी-मूल्य युग्मों का अव्यवस्थित संग्रह।
person = {'name': 'John', 'age': 25}

9. Sets (`set`):- Unordered collections of unique elements.
सेट ('सेट'):- अद्वितीय तत्वों का अव्यवस्थित संग्रह।
unique_numbers = {1, 2, 3, 4}

No comments:

Post a Comment