文字列を含むリストを整数に変換できません。リスト文字列を整数に変換できません
num = ['123']
私は試してみてください。
print(int(num))
私はエラーを取得:私がしようとすると、
TypeError: int() argument must be a string, a bytes-like object or a number,
not 'list'
を:
print(int(str(num)))
私はエラーを取得:
をValueError: invalid literal for int() with base 10: "['123']"
リストを整数に変換することはできませんが、リスト内の文字列値を整数に変換できます。 – Matthias
'num(0 [0])' – DavidG
を使用すると、 'num = set(['123'])' :)を変換できないことに注意してください。試行錯誤は問題を解決する最善の方法ではありません。 –