1.

In python we do not specify types, it isdirectly interpreted by the compiler, soconsider the following operation to beperformed.>>>x = 13 ? 2objective is to make sure x has a integervalue, select all that apply (python 3.xx)

A. x = 13 // 2
B. x = int(13 / 2)
C. x = 13 % 2
D. all of the mentioned
Answer» E.


Discussion

No Comment Found