+15 投票
分类:Python编程与实践 | 用户: (680 分)
f = open('test1.txt','w+') con = f.write('jjj') print(con) f.close()

1个回答

+2 投票
用户: (5.8k 分)
采纳于 用户:
 
已采纳
输入f.write?可以看到write方法的用法及返回值,通过
Returns the number of characters written (which is always equal to
the length of the string).
可以从看出write方法的返回值是写入字符串的长度,因此结果是3
欢迎来到 爱可可Q&A ,有什么问题可以尽管在这里提问,你将会收到其他成员的热心回答。
...