我无法使用 qpython3 在我的 android 设备上运行我的 python 程序。
他程序的第一步是创建一个文本文件来保存数据。但我收到 I/O 错误(文件系统只读)
这是用于创建/或确保文件容易存在的函数。
def filecreate(file): # creates the text file
f = open(file, 'a')
print('file created successfully\n')
print()
f.close()
如何在android中克服这个问题?