Introduce Variables

PHOTO EMBED

Mon Sep 16 2024 12:57:08 GMT+0000 (Coordinated Universal Time)

Saved by @jerseyitguy #python

# Variables
name = "Alice"        # String
age = 30              # Integer
height = 5.7          # Float
is_student = True     # Boolean

# Print variable values
print(name)
print(age)
print(height)
print(is_student)
content_copyCOPY