Pythonエラーcan only concatenate str(not"int")to str

3155 ワード

//   
thisset = set(("Google", "Running", "Taobao"))
print("length = "+ len(thisset))
//   
Traceback (most recent call last):
  File "D:\python\hello.py", line 276, in <module>
    print("length = "+ len(thisset))
TypeError: can only concatenate str (not "int") to str

ぶんせき
pythonはjavaのように、パッチを作るときに自動的にタイプをstringタイプに変換することはできません.int型の前にstr()をstrに変換する方法を呼び出す必要があります.次のように変更します.
thisset = set(("Google", "Runoob", "Taobao"))
print("length = "+ str(len(thisset)))