diff --git a/guide/english/python/basic-operators/index.md b/guide/english/python/basic-operators/index.md index d7d06ab36b..361c02c8ef 100644 --- a/guide/english/python/basic-operators/index.md +++ b/guide/english/python/basic-operators/index.md @@ -148,7 +148,7 @@ Consider a = 2 (in binary notation, 10) and b = 3 (in binary notation, 11) for t >> Performs a bitwise right shift. Shifts the bits of left operand, right by the number of bits specified as the right operand - a >> b = 0
Binary: 00000010 >> 00000011 = 0 + a >> b = 0
Binary: 00000010 >> 00000011 = 00000000 <<