如何在 Google Colab Input 中设置数据类型?

How to set data type in Google Colab Input?

我试图在 Google Colab

上对这个等式求和
a=1
b=input("B:")
c=a+b
print(c)

我在谷歌搜索,提供的解决方案是 c=a+int(b) 但发生错误 TypeError: 'str' object is not callable

请帮我解决如何在 Google Colab 中对 c 求和。非常感谢

我发现 c=a+int(b) 答案没有问题。考虑重新启动运行时。