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
2
a. int(63 / 29)
b. 8 ** 2 + 12 ** 2
Answered by
2
- Write Python expressions for the following.
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
Math,
3 months ago
Math,
3 months ago
Computer Science,
3 months ago
English,
6 months ago
Social Sciences,
6 months ago
World Languages,
11 months ago