I do not understand Bitwise Operators in Python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I do not understand Bitwise Operators in Python

Please help me understand this

19th Nov 2019, 4:33 PM
B.M.V. Aditya
B.M.V. Aditya - avatar
3 Answers
+ 3
It's a large concept so can't tell you whole but trying little effort to to make you understand. Bitwise operators are those operators which work on bit level. All the integer value Will be converted into binary value and then bitwise operators will work on these bits.it can apply on only 2 datatypes int and bool. Suppose :- a=2 b=3 c=a&b #bitwise and operator print (c) Gives you output 2 What happened inside is:- Binary of 2: 0010 Binary of 3: 0011 Bitwise & : 0010 # i.e 2 It will check & operator in every bit position. I.e 0&0=0 0&1=0 1&0=0 1&1=1
19th Nov 2019, 5:43 PM
Saquib Imam
Saquib Imam - avatar
+ 3
Try to review the chapter again. If that didn't help try to read people's comments in the comments section (of the chapter). If after all that you still don't get it, feel free to ask in Q&A, BUT remember this, ask with good details, explaining what you had tried to overcome the issue. This shows a good will, an effort had been given, before you come to ask. P.S. Don't take my word as discouragement, rather a suggestion 👍
19th Nov 2019, 4:43 PM
Ipang
+ 2
All of you guys thanks for suggesting and trying to answer my doubt
20th Nov 2019, 2:53 AM
B.M.V. Aditya
B.M.V. Aditya - avatar