在Python上的.txt文件上写一个字符串矩阵

时间:2016-06-13 19:17:35

标签: python json string matrix roguelike

我正在使用Python进行RogueLike游戏,我使用的是DungeonGenerator.py。 在我的游戏中,我从.txt文件中读取了地下城。

问题是我无法在.txt文件上用DungeonGenerator.py编写地牢,因为它是一个字符串矩阵。

这是DungeonGenerator.py的结果示例:

Dungeon example

我尝试:

return tiles
file = open ("Dungeon.txt", "w")
file.write(tiles)
file.close()

Obiously tiles不是一个字符串。

感谢您的建议!

1 个答案:

答案 0 :(得分:0)

您要做的是称为对象序列化。

pickle module应该对你有用。