Computer Science, asked by choudharybhavik1234, 6 months ago

Write Python expressions to: 2

(a) Represent the Integral part of the quotient when 63 is divided by 29.

(b) Represent Sum of the square of 8 and 12.​

Answers

Answered by Oreki
2

a. int(63 / 29)

b. 8 ** 2 + 12 ** 2

Answered by anindyaadhikari13
2

\star\:\:\:\sf\large\underline\blue{Question:-}

  • Write Python expressions for the following.

\star\:\:\:\sf\large\underline\blue{Answer:-}

1. Represent the integral part of quotient when 63 is divided by 29.

Answer:- The Python expression will be,

int(63/29)

2. Represent the sum of squares of 8 and 12.

Answer:- The Python expression will be,

8**2+12**2

Similar questions