Variables and Data Types

Estimated reading: 1 minute 39 views

Variables and Data Types

In Python, you can store data in variables. Variables can hold different data types, such as integers, floats, strings, and booleans.

# Variables and Data Types
age = 25
height = 5.9
name = "John"
is_student = True
Share this Doc

Variables and Data Types

Or copy link