Logo
Python Gujarati
શીખો (Learn)બ્લોગ (Blog)મહાવરો (Practice)અમારા વિશે (About)AI શીખો (New)
Python Gujarati

ગુજરાતીમાં પ્રોગ્રામિંગ શીખવાનું સૌથી સરળ પ્લેટફોર્મ.

શીખો

  • Python Basics
  • Introduction
  • Variables
  • Data Types

Platform

  • Practice
  • AI Learning
  • About Us

© 2026 Python Gujarati. All rights reserved.

Made with in Gujarat
પાછા જાઓ (Back to Curriculum)

3. ડેટા પ્રકારો (Data Types)

પાયથોનમાં વિવિધ પ્રકારના ડેટા.

મુખ્ય ડેટા પ્રકારો:

  • String (str): ટેક્સ્ટ ડેટા
  • Integer (int): પૂર્ણાંક સંખ્યાઓ
  • Float: દશાંશ સંખ્યાઓ
  • Boolean (bool): ખરા/ખોટા (True/False)

PYTHONઉદાહરણ (Example Code):

example.py
x = 10       # int
y = 10.5     # float
z = "Hello"  # str
is_student = True # bool