CodeNewbie Community 🌱

Discussion on: How do I create a variable in Python?

Collapse
 
kaitheceo profile image
Kai Lyons

Hello! Wonderful question!

The simple syntax for a variable is:
variable_name = value

EXAMPLES:
name = "Kai"
is_true = True
zero = 0

Hope this helps!