pycharm配置php,pycharm如何配置python环境

pycharm配置python环境的方法:首先指定可写的模式,代码为【f1.write('hello boy!')】;然后关闭相关文件即可将缓存中的数据写入到文件中,代码为【[root@node1 ~]# hello boy!】。

609b14502b006adb5ccbfa34ed5b6efd.png

本教程操作环境:windows7系统、python3.9版,DELL G3电脑。

pycharm配置python环境的方法:

直接的写入数据是不行的,因为默认打开的是'r' 只读模式>>> f.write('hello boy')

Traceback (most recent call last):

File "", line 1, in

IOError: File not open for writing

>>> f

应该先指定可写的模式>>> f1 = open('/tmp/test.txt','w')

>>> f1.write('hello boy!')

但此时数据只写到了缓存中,并未保存到文件,而且从下面的输出可以看到,原先里面的配置被清空了[root@node1 ~]# cat /tmp/test.txt

[root@node1 ~]#

关闭这个文件即可将缓存中的数据写入到文件中>>> f1.close()

[root@node1 ~]# cat /tmp/test.txt

[root@node1 ~]# hello boy!

注意:这一步需要相当慎重,因为如果编辑的文件存在的话,这一步操作会先清空这个文件再重新写入。那么如果不要清空文件再写入该如何做呢?

使用r+ 模式不会先清空,但是会替换掉原先的文件,如下面的例子:hello boy! 被替换成hello aay!>>> f2 = open('/tmp/test.txt','r+')

>>> f2.write('\nhello aa!')

>>> f2.close()

[root@node1 python]# cat /tmp/test.txt

hello aay!

如何实现不替换?>>> f2 = open('/tmp/test.txt','r+')

>>> f2.read()

'hello girl!'

>>> f2.write('\nhello boy!')

>>> f2.close()

[root@node1 python]# cat /tmp/test.txt

hello girl!

hello boy!

可以看到,如果在写之前先读取一下文件,再进行写入,则写入的数据会添加到文件末尾而不会替换掉原先的文件。这是因为指针引起的,r+ 模式的指针默认是在文件的开头,如果直接写入,则会覆盖源文件,通过read() 读取文件后,指针会移到文件的末尾,再写入数据就不会有问题了。这里也可以使用a 模式>>> f = open('/tmp/test.txt','a')

>>> f.write('\nhello man!')

>>> f.close()

>>>

[root@node1 python]# cat /tmp/test.txt

hello girl!

hello boy!

hello man!

关于其他模式的介绍,见下表:

d8daa7825901717c745a1c8b6729165d.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值