Learn how to store and use data in your programs
Variables hold information (things like numbers or words) so the computer can remember them, and use them later.
name = "Sam"
This is a variable declaration,
declaring that the variable: name
holds the information: Sam
print("Your name is ", name")
This variable can be used in a print function.
Here, it would give the output, "Your name is Sam".
If we changed the variable's data to be name = "John", we would get the output, "Your name is John".