Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

in python programming answer the questions about variables Create a variable a .

ID: 3601493 • Letter: I

Question

in python programming answer the questions about variables

Create a variable a. Assign it the value 32

A=32

Create a variable b. Assign it the value 54

Create a variable c. Assign it the value -21

Create a variable age. Assign it the value 22

Create a variable temp. Assign it the value 65.0

Create a variable price. Assign it the value 24.99

Create a variable name. Assign it the value 'Susan'

Create a variable numberOfPets. Assign it the value 4

Create a variable isSunny. Assign it the value True

Create a variable gameOver. Assign it the value False

Create a variable a. Assign it the value 32

A=32

Create a variable b. Assign it the value 54

Create a variable c. Assign it the value -21

Create a variable age. Assign it the value 22

Create a variable temp. Assign it the value 65.0

Create a variable price. Assign it the value 24.99

Create a variable name. Assign it the value 'Susan'

Create a variable numberOfPets. Assign it the value 4

Create a variable isSunny. Assign it the value True

Create a variable gameOver. Assign it the value False

Explanation / Answer

1) a = 32
2) b = 54
3) c = -21
4) age = 22
5) temp = 65.0
6) price = 24.99
7) name ='Susan'
8) numberOfPets = 4
9) isSunny = True
10) gameOver = False