Edit Template
Edit Template
Edit Template

Identation & Comments

python मे Identation & Comments एक basic syntex का part है इसको जाने बिना कोई भी programmer, python मे coding नहीं कर सकता……

Identation in Python

python के code में indentation देना बहुत ही जरूरी होता है, इससे code के structure समझने में आसानी होती है और बिना indentation से code में error भी आ सकता है। 

indentation को देने के लिए हम tab या 4 space का use करते हैं।  Generally code editor में indentation देने की जरूरत नहीं होती यह automatic दे देता है, but ना दे तो हम tab button को press करके दे सकते हैं।  नीचे दिए गए syntax में आप indentation  को अच्छे से समझ सकते हैं। 

def example(name):
    if name:
        print(f"Hello, {name}!")
    else:
        print("Hello, World!")

example("Alice")

यहां पर पहले line का code तो start से लिखा है but दूसरी line में हमने कुछ space दिया है इसी को indentation कहते हैं.

Comments in Python

जब हम code editor में code लिखते हैं तो उसका execution होता है but हम चाहते हैं कि इसमें कुछ लाइन ऐसी लिखी हो जिसका execution ना हो तो हम comment का use करते हैं, यह लाइन सिर्फ code को समझने के लिए लिखी जाती है।  python में 2 type के comments होते हैं।

1. Single line comment

जब हम एक ही लाइन में comment देना चाहते हैं तो single line comment का use करते हैं।  इसके लिए # press करके कुछ भी लिखते हैं तो यह एग्जीक्यूट नहीं होता है। 

1. Multi line comment

जब हमें एक से ज्यादा लाइन में comment लिखना होतो हम multi line comment का use करते हैं, इसके लिए triple quotes ( ‘‘‘ or “““ ) का use करते हैं। 

नीचे syntax में single line comment और multi line comment को अच्छे से समझ सकते हैं.

# This is a single-line comment
print("Hello, Programmer")  # This is an inline comment


"""
This is a multi-line comment
It can span multiple lines
"""
print("Hello, Programmer")

उम्मीद करते है कि आपको python मे Identation & Comments का use समझ मे या गया होगा । अपने learning को continue रखने के लिए next button पर click करे,

Some important questions in this tutorial

What is Python Identation. python identation kya hai.

What is python comments. python comments kya hai.

What is single line comment and multi line comment. python me single line and multi line comment kya hota hai.

Add a comment...

Your email address will not be published. Required fields are marked *

  • All Posts
  • Artificial Intelligence
  • Computer Fundamentals
  • Computer Networks
  • Data Analytics
  • Data Science
  • DBMS
  • Deep Learning
  • Digital Fundamentals
  • DSA with Python
  • Excel
  • Exercise
  • Git & Github
  • Machine Learning
  • Matplotlib
  • Natural Language Processing
  • NumPy
  • Operating System
  • Pandas-s
  • Power BI
  • Python Tutorial
  • Scikit-learn
  • Seaborn
  • SQL & MySQL
Python List

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...

Python String

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...

Python Loops

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...

Conditional Statements

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...

Python Operators

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...

Python Data Type

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Hamburger Toggle...

Scikit-learn

Scikit-learn Tutorial Scikit-learn Hamburger Toggle Menu Edit Template Scikit learn in Hindi What is Scikit-learn in Hindi Scikit learn एक...

Pandas

Pandas Tutorial Pandas Hamburger Toggle Menu Edit Template Pandas in Hindi What is Pandas in Hindi pandas  एक python library...

NumPy

NumPy Tutorial NumPy Hamburger Toggle Menu Edit Template NumPy in Hindi What is NumPy in Hindi matplotlib का use हम...

Edit Template
Scroll to Top