f = open("葫芦小金刚", mode="a", encoding="utf-8") # a, append 追加, 在文件的末尾写入内容 # f.write("你叫什么名字啊?") # f.read() # not readable f.flush() f.close()