Python సింటాక్స్: వేరియబుల్స్, డేటా రకాలు, షరతులు, లూప్‌లు

వేరియబుల్స్ మరియు డేటా రకాలు

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.