Complete the code to store the number 10 in a variable named 'age'.
age = [1]The variable age stores the number 10 so we can use it later in the program.
Complete the code to print the value stored in the variable 'name'.
print([1])
To print the value inside the variable name, just write its name without quotes.
Fix the error in the code by completing the assignment of 5 to the variable 'count'.
count [1] 5
The single equals sign = assigns the value 5 to the variable count.
Fill both blanks to create a variable 'total' that adds 3 and 7.
total = [1] [2] 7
The variable total stores the sum of 3 and 7 using the plus sign +.
Fill all three blanks to create a variable 'message' that stores 'Hello' repeated 3 times.
message = [1] [2] [3]
+ concatenates strings, not repeats them.The variable message stores the string 'Hello' repeated 3 times using the * operator.
