0
in python 3 i don't understand This symbols use (>>, <<) please give me some examples also.
1) >> 2) <<
4 odpowiedzi
+ 7
Taking in account all your questions, i would suggest you to complete the python course.
+ 2
Other bitwise operator :
>> right shift
<< left shift
Examples :
4 >> 2 = 1
1 << 1 = 2
+ 2
And use search :
https://www.sololearn.com/Discuss/1836205/?ref=app
+ 1
But I don't understand some questions