24.5k views
2 votes
What is the value of the variable result after these lines of code are executed?

>>> a = 3
>>> b = 2
>>> c = 0
>>> result = a * b - c * b

User Larsgrefer
by
4.5k points

1 Answer

6 votes

Answer:

the answer is 6

Explanation:

3×2-0×2=6

User Gil Sousa
by
4.1k points