Create a variable named carname and assign the value "Volvo" to it.
this is python pls answer
Answers
Answered by
7
Answer:
Create a variable called carName and assign the value "Volvo" to it: var carName = "Volvo";
Create two variables. Assign the number 5 to x, and 6 to y. ...
You can declare many variables in one statement. Start the statement with var and separate the variables by comma: ...
Using variables in loops: var text = "";
Explanation:
Answered by
5
Answer:
carname = "Volvo"
Explanation:
This is the correct answer
Similar questions