Wednesday, February 21, 2024

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

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

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

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

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

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

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

No comments:

Post a Comment

Input and Output statements in Python

In Python, input and output are handled using built-in functions input() and print(). पायथन में, इनपुट और आउटपुट को अंतर्निहित फ़ंक्शन इनपुट...