0
What is the use of << or>> in python?
2 Réponses
+ 2
They are called bitwise operators
x<<y means the value of x ins moved left by y places
https://wiki.python.org/moin/BitwiseOperators
https://www.tutorialspoint.com/python/bitwise_operators_example.htm
+ 1
thanks koushik