Python Variables
Creating Variables
variables help us reference a piece of data for later use.
name = "Ahmed"
height_cm = 180
weight_kg = 85.5
A variable gives us an easy-to-use shortcut to a piece of data. Whenever we use the variable name in our code, it will be r...
ahmedgouda.hashnode.dev2 min read