Why returns the below code 32? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

Why returns the below code 32?

x=5 print(x>>2<<x)

19th May 2020, 6:09 PM
Paweł Malewicz
Paweł Malewicz - avatar
12 Answers
+ 7
Paweł Malewicz x=5 is x=00000101(bin) x>>2 is 00000001(bin) or 1(dec) (x>> 2)<<x is 1(dec)<<5(dec) So it is 000100000(bin) or 32(dec)
19th May 2020, 6:44 PM
Petr
+ 9
Paweł Malewicz think about it this way: i will add parentheses for a clear view: val << num = val * (2 ** num) val >> num = val // (2 ** num) 5 >> 2 << 5 means: 5 >> 2 = 5 // 2**2 = 5 // 4 = 1 1 << 5 = 1 * 2**5 = 1 * 32 = 32
19th May 2020, 8:58 PM
Sebastian Pacurar
Sebastian Pacurar - avatar
+ 3
Petr 9 >> 2 = 9 // 2**2 = 9 // 4 = 2 2 << 9 = 2 * 2**9 = 2 * 512 = 1024 9>>2<<9 = 1024 😃
19th May 2020, 9:15 PM
Sebastian Pacurar
Sebastian Pacurar - avatar
19th May 2020, 9:24 PM
Petr
+ 2
Paweł Malewicz :)) it was a long, hard day:)). I correct. Thanks
19th May 2020, 7:11 PM
Petr
+ 1
x>>2: shifts 5 (101) two bits to the right, so that you get 1. The 01 from the end of 5 are cut off. ...<<x: shifts the 1 five bits to the left, so that we get 32 (100000).
19th May 2020, 6:26 PM
Manu_1-9-8-5
Manu_1-9-8-5 - avatar
+ 1
Thank you guys! Now it's clear! 😀Petr, in your comments should be "x=5 is x=00000101" and in the end "it is 00100000".
19th May 2020, 7:09 PM
Paweł Malewicz
Paweł Malewicz - avatar
+ 1
You're welcome. Thank you again!
19th May 2020, 7:15 PM
Paweł Malewicz
Paweł Malewicz - avatar
+ 1
Sebastian Pacurar if we choose your path, what will be the result for x = 9? :)
19th May 2020, 9:05 PM
Petr
0
Why shifts five bits to the left instead of two?
19th May 2020, 6:36 PM
Paweł Malewicz
Paweł Malewicz - avatar
0
You are shifting the left part (x>>2) with the amount of x (5) to the left. Read it from left to right.
19th May 2020, 6:47 PM
Manu_1-9-8-5
Manu_1-9-8-5 - avatar
0
>> (bitwise left shit) >>x is same as dividing by 2^x <<(bitwise right shift) <<x is same as multiplying with 2^x 1*2^5=32
21st May 2020, 3:37 AM
Hima
Hima - avatar