In Python, to create a file, you need to open it in write mode ('w', 'wb') or append mode ('a', 'ab'). f2 = open("text2.txt", 'w'). The open() function ...
確定! 回上一頁