bigpoppablizz
12/13/2017 - 6:18 AM

Variables - 2 Variables on a single line

variable = little boxes that store stuff

variable = little boxes that store stuff

"You can assign two variables on a single line" #example below:

  savings = 514.86
  salary = 320.51
    or 
  savings, salary = 514.86, 320.51

#best used for two closely related variables like (width and height, x and y coordinates)