चर और डेटा प्रकार
Python एक गतिशील रूप से टाइप की गई प्रोग्रामिंग भाषा है, जिसका अर्थ है कि आपको उनका उपयोग करने से पहले चर प्रकारों को घोषित करने की आवश्यकता नहीं है। नीचे परिवर्तनीय घोषणा और कुछ सामान्य डेटा प्रकारों के उदाहरण दिए गए हैं:
परिवर्तनीय घोषणा:
variable_name = value
सामान्य डेटा प्रकार:
- पूर्णांक(
int
):age = 25
- फ़्लोटिंग-पॉइंट नंबर(
float
):pi = 3.14
- स्ट्रिंग(
str
):name = "John"
- बूलियन(
bool
):is_true = True
सशर्त बयान
सशर्त बयानों का Python उपयोग स्थितियों की जांच करने और मूल्यांकन परिणाम के आधार पर बयानों को निष्पादित करने के लिए किया जाता है।, , और (अन्यथा यदि) संरचनाओं का उपयोग इस प्रकार किया जाता है if
: else
elif
if
कथन:
if condition:
# Execute this block if condition is True
else
कथन:
else:
# Execute this block if no preceding if statement is True
elif
(else if
) कथन:
elif condition:
# Execute this block if condition is True and no preceding if or else statement is True
छोरों
Python आमतौर पर उपयोग किए जाने वाले दो लूप प्रकारों का समर्थन करता है: for
लूप और while
लूप, स्टेटमेंट के दोहराव निष्पादन को सक्षम करता है।
for
कुंडली:
for variable in sequence:
# Execute statements for each value in the sequence
while
कुंडली:
while condition:
# Execute statements while the condition is True
विशिष्ट उदाहरण:
# Variable declaration
age = 25
name = "John"
# Conditional statement
if age >= 18:
print("You are of legal age.")
else:
print("You are not of legal age.")
# Loop
for i in range(5):
print("Hello there!")
count = 0
while count < 5:
print("Loop number:", count)
count += 1
निष्पादित होने पर, उपरोक्त कोड उम्र की जांच करेगा और उचित संदेश प्रिंट करेगा, फिर लूप का Hello there!
उपयोग करके संदेश को पांच बार लूप करेगा, और अंत में लूप for
के मान प्रिंट करेगा । while