Lesson – 97 : Python: Features, Path Set-up, Basic Syntax, Comments અને Variables

Python આજના સમયમાં સૌથી વધુ લોકપ્રિય પ્રોગ્રામિંગ ભાષાઓમાંની એક છે. તેની સરળતા, વાંચવામાં સરળ કોડ, અને મોટું community support તેને શરૂઆત કરતા વિદ્યાર્થીઓથી માંડીને પ્રોફેશનલ ડેવલપર સુધી સૌનાં માટે ખૂબ ઉપયોગી બનાવે છે. આ લેખમાં આપણે Python ના મુખ્ય Features, Path કેવી રીતે Set કરવું, Basic Syntax, Comments અને Variables ની માહિતી ગુજરાતી ભાષામાં સમજશું.

chatgpt feature


🟦 1. Python Features (પાયથોન ની વિશેષતાઓ)

Python ઘણા Features ને કારણે પ્રસિદ્ધ છે. મુખ્ય Features નીચે મુજબ છે:

1.1 Simple & Easy to Learn (શીખવામાં સરળ)

Python ની syntax ખૂબ જ સરળ છે, જેના કારણે તે માનવી ભાષા જેવી લાગે છે. Beginner માટે સર્વોત્તમ ભાષા છે.

1.2 Open Source & Free (મફત અને ઓપન સોર્સ)

Python નો ઉપયોગ તમે મફતમાં કરી શકો છો અને તેનો code પણ freely available છે.

1.3 High-Level Language

Python માં Memory Management, Hardware Details વિશે ચિંતા કરવાની નથી.

1.4 Platform Independent (Cross Platform)

Python Windows, Linux, MacOS બધામાં સરળતાથી ચાલે છે.

1.5 Large Library Support (વિશાળ લાઇબ્રેરી સપોર્ટ)

NumPy, Pandas, Django, Flask જેવી લાઇબ્રેરીઓ Python ને More Powerful બનાવે છે.

1.6 Object-Oriented Language

Python માં OOP concepts (class, object, inheritance, polymorphism) સરળતાથી કાર્ય કરે છે.


🟦 2. Setting up Path in Python (Python PATH કેવી રીતે Set કરવું)

Windows માં Python install કર્યા પછી Command Prompt માં “python” ચાલતું ન હોય તો PATH Set કરવું પડે છે.

🛠 Path Set કરવાની સ્ટેપ્સ:
👉 Step 1: Python Install કરતી વખતે

✔ Install Screen પર “Add Python to PATH” Check કરી દો.
આ સૌથી સરળ રીત છે.

👉 Step 2: Manual Path Setting (જો Python PATH માં નથી)
  1. Start Menu માં “Environment Variables” શોધો

  2. “Edit the system environment variables” પર ક્લિક

  3. “Environment Variables” પર ક્લિક

  4. “Path” પસંદ કરો → “Edit”

  5. “New” → Python Installation Location ઉમેરો:

C:\Users\YourName\AppData\Local\Programs\Python\Python312\
C:\Users\YourName\AppData\Local\Programs\Python\Python312\Scripts\
  1. Save કરીને CMD ખોલો, લખો:

python --version

✔ PATH સેટ થઈ ગયો હશે.


🟦 3. Basic Syntax in Python (પાયથોનનું મૂળભૂત વાક્યરચન)

Python માં Syntax ખુબ જ સરળ છે.

3.1 Indentation ફરજિયાત છે

Python {} નો ઉપયોગ નથી કરતી.
Block ઓળખવા માટે spaces અથવા tab નો ઉપયોગ થાય છે.

Example:

if 10 > 5:
print("10 is greater than 5")
3.2 No Semicolon Required

Statements ને end કરવા semicolon જરૂરી નથી.

3.3 Case-sensitive Language

Var, var, VAR — ત્રણેય અલગ છે.


🟦 4. Comments in Python (કૉમેન્ટ્સ)

Comments કોડને સમજવા સરળ બનાવે છે. Python માં બે પ્રકારના comments છે:

4.1 Single Line Comment

# નો ઉપયોગ કરીને.

# This is a single-line comment
print("Hello Python")
4.2 Multi-line Comment

Triple Quotes નો ઉપયોગ:

"""
This is a
multi-line comment
"""


🟦 5. Variables in Python (વેરિયેબલ્સ)

Variable એટલે memory માં data store કરવાનું નામ.

5.1 Variable Declare કરવાના નિયમો
  • Alphabet અથવા underscore (_) થી શરૂ થવું જોઈએ

  • Space નો ઉપયોગ નથી

  • Case-sensitive છે

  • Special characters (%, @, $, #) ના વાપરવા

✔ Example:
x = 10
name = "Python"
price = 99.50
5.2 Dynamic Typing

Python માં variable નું datatype આપમેળે નક્કી થાય છે.

a = 10 # int
a = "Hi" # string

Python શીખવા સરળ, શક્તિશાળી અને beginner-friendly ભાષા છે. આ લેખમાં તમે Python ના મુખ્ય Features, Path Set કરવાનું, Basic Syntax, Comments અને Variables વિશે સરળ ગુજરાતી ભાષામાં સમજ્યું. Python programming શરૂ કરતા દરેક વિદ્યાર્થી માટે આ મૂળભૂત જ્ઞાન ખૂબ મહત્વપૂર્ણ છે.