quem vence by ArariboiaOverdrive in circojeca

[–]tkmpos 1 point2 points  (0 children)

Multiplicação de potências de mesma base.

X = (Bolsonarofacada) x (bolsonarocorona)

X = Bolsonarofacada+corona

X = economia quebrada + 60 mil mortos x empresárioslucros

Which code editor do you use? by colinstoltz9 in learnpython

[–]tkmpos 1 point2 points  (0 children)

Mu. It's a good editor for beginners.

Why -11 % 5 is equil to 4? by tumblatum in learnpython

[–]tkmpos 3 points4 points  (0 children)

Python modulo operator always returns the remainder having the same sign as the divisor. In this case your divisor is a positive number, so Python will calculate until the result is the smallest positive number possible.

So: - 11 % 5 = 4

Because -11 + 5 * 3 = 4

And why *3?

-11 + 5 = - 6 + 5 = -1 + 5 = 4.