猿问

关于js和python的字符串运算

js代码:
var a = '123';
console.log(a >> 2); // result : 30

python(3)代码:

a = '123'print(a >> 2)        #  TypeError: unsupported operand type(s) for >>: 'str' and 'int'

请问一下位各位大佬:

如何把上面这段js翻译成python ? 谢谢!


米琪卡哇伊
浏览 467回答 1
1回答

哈士奇WWW

int(a) >> 2
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答