WHAT IS THIS? ">>>" | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

WHAT IS THIS? ">>>"

What is this?

5th Aug 2021, 6:58 AM
Женя Москвитин
Женя Москвитин - avatar
3 Answers
+ 5
Hi! ">>>" symbol denotes the prompt of the interactive Python interpreter, meaning that the interpreter is ready to get Python statements typed in. It's not required in Sololearn ide since we are writing in script mode here.
5th Aug 2021, 7:50 AM
Python Learner
Python Learner - avatar
+ 2
In JavaScript >>> is the unsigned binary right shift operator. It is like the >> signed right shift operator, but the difference is in how they use the sign bit. Signed >> shift keeps the original sign bit - whether 0 or 1 - in place and replicates it to the next position as it shifts the remaining bits to the right. Unsigned >>> shift always shifts a 0 into the sign bit as the original sign bit and all the other bits get shifted to the right.
5th Aug 2021, 8:00 AM
Brian
Brian - avatar
0
Thanks
5th Aug 2021, 7:56 AM
Женя Москвитин
Женя Москвитин - avatar