Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

which operator is used for division in python? \\ / % //

Question

which operator is used for division in python?
\\
/
%
//

Explanation:

Brief Explanations

In Python, the / operator is used for division. The \ is not a division operator in Python. The % is the modulus operator (returns the remainder of a division). The // is the floor division operator (returns the quotient as an integer by truncating the decimal part).

Answer:

/