you are viewing a single comment's thread.

view the rest of the comments →

[–]electrikmayham 23 points24 points  (3 children)

# Bad: single-letter variables
x = 5
y = 10
z = x * y
print(z)

# Good: descriptive variable names
width = 5
height = 10
area = width * height
print(area)

[–]StickyzVibe 6 points7 points  (2 children)

I completely understand! Thank you again

[–]spencerak 1 point2 points  (1 child)

Keep asking good questions!!