js代码:var a = '123';console.log(a >> 2); // result : 30python(3)代码:a = '123'print(a >> 2) # TypeError: unsupported operand type(s) for >>: 'str' and 'int'请问一下位各位大佬:如何把上面这段js翻译成python ? 谢谢!
添加回答
举报
0/150
提交
取消