**已关闭。**此问题需要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
我试图通过编辑路径来改变水平,但是失败了,我想知道发生了什么。
1条答案
按热度按时间2jcobegt1#
说明
在第206行,你试图添加
list
和str
。错误是说你不能在列表中添加str
,但如果你在列表中添加一个项目,请使用此方法:代码
字符串
输出
型