1.Python3关于文件的操作
Posted 廖丹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.Python3关于文件的操作相关的知识,希望对你有一定的参考价值。
1.写了一个简单的Demo,就是向txt文本写入内容,最初代码如下:
file = open("D:/Users/nancy/python.txt","wb") file.write(\'Hello python file\') file.close()
运行结果如下图
2.后面百度了下,发现要用转码方式解决,具体代码如下:
file = open("D:/Users/nancy/python.txt","wb") file.write(\'Hello python file\'.encode()) file.close()
或者
file = open("D:/Users/nancy/python.txt","wb") file.write(bytes("Hello python file","UTF-8")) file.close()
以上是关于1.Python3关于文件的操作的主要内容,如果未能解决你的问题,请参考以下文章
spark关于join后有重复列的问题(org.apache.spark.sql.AnalysisException: Reference '*' is ambiguous)(代码片段