Assignment Operators in Python

  Рет қаралды 37,427

Neso Academy

Neso Academy

Күн бұрын

Пікірлер: 51
@ECEKOTESWARARAOM
@ECEKOTESWARARAOM Жыл бұрын
X=55(110111) Y=10(1010) By apply xor operator it X^=Y(111101) print (x) =61
@veeratzxmatey6146
@veeratzxmatey6146 4 ай бұрын
X is 2 not 61
@Fawz_1470
@Fawz_1470 2 ай бұрын
yes u did OR ie (x |= y) for which u get 61. but u shld do AND ie (x &= y) for which u get 2
@DrSpooglemon
@DrSpooglemon Жыл бұрын
It should be noted that the operators tell the python interpreter to call a corresponding magic method on the object to the left of the operator passing the object to the right as an argument. The + operator utilises the __add__ method and the += operator utilises the __iadd__ method. 'a + b' is equivalent to 'a.__add__(b)' and 'a += b' is equivalent to 'a.__iadd__(b)'. You can create bespoke behaviours in your classes using these double underscore methods(or "dunder methods").
@vivekacharyavivekacharya6456
@vivekacharyavivekacharya6456 Жыл бұрын
In decimal its 2 and in binary it is '0b10'
@jingersatuh6322
@jingersatuh6322 10 ай бұрын
Homework : 55 & 10 = 0b0110111 & 0b00001010 = 0b0000010 = 2 (Decimal)
@crazystatus8249
@crazystatus8249 6 ай бұрын
How bro can you teach me
@suhailsnmsnm5397
@suhailsnmsnm5397 6 ай бұрын
@@crazystatus8249 he did little mistake while typing but answer is correct its 2
@Fawz_1470
@Fawz_1470 2 ай бұрын
@@crazystatus8249 binary of 55 =110111 binary of 10 = 1010 On doing Bitwise AND operation, ie only when 1 and 1 appears, we take 1 but in case of 0 and 0, 1 and 0,we take 0 So we get 000010 On doing binary to decimal conversion, 0x2⁵ + 0x2⁴ + 0x2³ + 0x2² + 1x2¹ + 0x2⁰ which equals to 2 which is the answer. So >>> x=55 >>> y=10 >>> x &= y >>>x 2 >>>bin(x) 0b10
@Thatipelli_Harishankar
@Thatipelli_Harishankar 5 күн бұрын
Answer of homework problem X is 2
@MayurMitra-i9i
@MayurMitra-i9i 4 ай бұрын
Answer = 2. Thanks for the video.
@khushantwankhede8311
@khushantwankhede8311 10 ай бұрын
answer : x = 2 & thankyou for making video for us
@FAITHBS
@FAITHBS 2 ай бұрын
thank so much this made a lot of sense
@venkatraman_padmanaban
@venkatraman_padmanaban 11 ай бұрын
Output value of x is 2
@vivekacharyavivekacharya6456
@vivekacharyavivekacharya6456 Жыл бұрын
Sir i will request you to please upload the classes as soon as possible
@249srihari4
@249srihari4 Жыл бұрын
Me to sir
@mradulsonare2458
@mradulsonare2458 8 ай бұрын
Answer is 2
@moviesync3131
@moviesync3131 10 ай бұрын
2:20 I don't know what sign is that. Is that supposed to be the [and] shortcut sign...?
@billionllc
@billionllc 4 күн бұрын
Excellent
@sarswatigoutam
@sarswatigoutam 8 ай бұрын
Tqqq so much sirr
@pmalik1975
@pmalik1975 Жыл бұрын
Decimal value is 2
@suryaprakashtumu8671
@suryaprakashtumu8671 11 ай бұрын
How will come 2
@tafaranyamhunga
@tafaranyamhunga 11 ай бұрын
55 = 110111 and 10 = 1010, so 55 & 10 is 000010 or(10), and 10(2) in decimal is 2@@suryaprakashtumu8671
@monicabhattacharya9029
@monicabhattacharya9029 Жыл бұрын
please upload videos daily
@danielquarshie5235
@danielquarshie5235 10 ай бұрын
The decimal value is 2
@stevenmakatu7698
@stevenmakatu7698 6 ай бұрын
>>> x = 55 >>> y = 10 >>> x &= y >>> x
@techdigital280
@techdigital280 8 ай бұрын
Thnx a lot
@maneeshabandaru
@maneeshabandaru 7 ай бұрын
output=2
@tharunkumar8430
@tharunkumar8430 10 ай бұрын
Answer(2)
@joydeboraon6637
@joydeboraon6637 3 ай бұрын
2
@shikharbhardwaj1352
@shikharbhardwaj1352 8 ай бұрын
answer = 2
@harishmahajan6845
@harishmahajan6845 Жыл бұрын
homework answer is 2
@kumarp5954
@kumarp5954 Жыл бұрын
But how, binary value of 55=110111 and 10=1010 so how we perform & operator in this one is 6 digit and second is 4 digit????!!
@kumarp5954
@kumarp5954 Жыл бұрын
In my notebook, After performing x&y answer is 110010 which is 50 And computer answers is 2 why
@tafaranyamhunga
@tafaranyamhunga 11 ай бұрын
55 = 110111 and 10 = 1010, so 55 & 10 = 000010 or(10), and 10(2) in decimal is 2@@kumarp5954
@danieleberenwafor6876
@danieleberenwafor6876 10 ай бұрын
Interested
@meelaindrakumar5872
@meelaindrakumar5872 Ай бұрын
x=55 y=10 x &= y x output is : 2
@angelobruce481
@angelobruce481 Ай бұрын
65
@filipemarques4677
@filipemarques4677 Ай бұрын
110111 &= 1010 = 000010 = 2
@imsujata546
@imsujata546 Жыл бұрын
@SG_BTech
@SG_BTech 2 ай бұрын
Not possible in4-5 minutes
@Monkey-nv3pj
@Monkey-nv3pj Жыл бұрын
1st like 1st view
@jagsank1k2
@jagsank1k2 3 ай бұрын
answer is 2
@YTPKY
@YTPKY Жыл бұрын
2
@rehanasultana4760
@rehanasultana4760 Жыл бұрын
65
@induediga5542
@induediga5542 2 ай бұрын
Answer is 2
@HimanshuVerma-ig5tw
@HimanshuVerma-ig5tw Жыл бұрын
2
@clashroyaldaxter9072
@clashroyaldaxter9072 Жыл бұрын
2
@rohithreddy4603
@rohithreddy4603 Жыл бұрын
2
@rathinsinha5646
@rathinsinha5646 8 ай бұрын
2
Membership Operators in Python
7:29
Neso Academy
Рет қаралды 15 М.
Bitwise Operators in Python (Part 1)
9:21
Neso Academy
Рет қаралды 44 М.
Ouch.. 🤕⚽️
00:25
Celine Dept
Рет қаралды 29 МЛН
Kluster Duo #настольныеигры #boardgames #игры #games #настолки #настольные_игры
00:47
World’s strongest WOMAN vs regular GIRLS
00:56
A4
Рет қаралды 7 МЛН
The Basics of while Loop in Python
8:17
Neso Academy
Рет қаралды 56 М.
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 321 М.
Logical Operators in Python
15:12
Neso Academy
Рет қаралды 32 М.
Fastest Way to Learn ANY Programming Language: 80-20 rule
8:24
Sahil & Sarra
Рет қаралды 901 М.
Arithmetic Operators in Python
12:05
Neso Academy
Рет қаралды 51 М.
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 410 М.
Bitwise Right Shift Operator in Python
11:35
Neso Academy
Рет қаралды 33 М.
10 Crazy Python Operators That I Rarely Use
11:37
Indently
Рет қаралды 41 М.
Comparison Operators in Python
9:12
Neso Academy
Рет қаралды 26 М.
While loops in Python are easy ♾️
6:58
Bro Code
Рет қаралды 395 М.
Ouch.. 🤕⚽️
00:25
Celine Dept
Рет қаралды 29 МЛН