Computer Science, asked by princeadityamewara99, 6 months ago

Write the corresponding Python assignment statements.

i) Assign 10 to a variable height and 20 to a variable weight

ii) Assign the sum of height and weight to a variable total.​

Answers

Answered by figrayx
2

Answer:

i)

height = 10

weight = 20

ii)

total = height + weight

Answered by valeriy69
5

\small\mathsf\color{pink}{Solution\: using\: python\: 3}

height, weight = 10, 20

total = height + weight

\small\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions