标签: python
我在python中编写了代码:
static='' def write(value): static+=value print(static)
我希望在每次程序执行后都不破坏静态变量的值,并添加新的信息。我不想使用文件。 怎么办?