如何修复这个Python错误为什么它不工作?[关闭]

83qze16e  于 2023-11-15  发布在  Python
关注(0)|答案(1)|浏览(79)

**已关闭。**此问题需要debugging details。目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
1小时前关闭
Improve this question

File "/Users/****/PycharmProjects/PlatformGame/main.py", line 206, in <module>
    load_map(game_map)
  File "/Users/****/PycharmProjects/PlatformGame/main.py", line 26, in load_map
    f = open(path + '.txt', 'r')
             ~~~~~^~~~~~~~
TypeError: can only concatenate list (not "str") to list

我试图通过编辑路径来改变水平,但是失败了,我想知道发生了什么。

2jcobegt

2jcobegt1#

说明

在第206行,你试图添加liststr。错误是说你不能在列表中添加str,但如果你在列表中添加一个项目,请使用此方法:

代码

your_list = ["item1", "item2", "item3"]
print(your_list)
your_list.append("Awesome item")
print(your_list)

字符串

输出

['item1', 'item2', 'item3']
['item1', 'item2', 'item3', 'Awesome item']

相关问题