标签: python string integer concatenation
我在Python编码,并且遇到了一个我似乎无法解决的错误。这是它影响的代码部分。
import random a = raw_input("Enter text") b = random.randrange(1,101) print (a+b)
当我尝试运行代码时,我收到错误" TypeError:无法连接' str'和' int'对象 "
我想知道如何打印a + b的结果。