C-16-Q129mediumsingle_mcq
After a = 7 and b = 2, the value of a / b is:
After a = 7 and b = 2, the value of a / b is:
- a3
- b3.5
- c4
- d14
ব্যাখ্যা
In Python 3 the / operator always performs true (floating-point) division, so rather than truncating to a whole number. Integer-only division would instead use the // operator.