我無法使用qpython3在我的android設備上運行我的python程序。爲什麼我無法在android上使用python創建文件
他程序的第一步是創建一個文本文件來保存數據。但我得到一個I/O錯誤(文件系統只讀)
這是用來創建/或確保該文件很容易存在的函數。
def filecreate(file): # creates the text file
f = open(file, 'a')
print('file created successfully\n')
print()
f.close()
如何在android中克服這個問題?