Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 148 Bytes

File metadata and controls

7 lines (6 loc) · 148 Bytes

Python can't declare a variable without assignment.

age = 18      # age is of type int
name = "John" # name is now of type str
print(name)