文件操作

Posted FBYi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件操作相关的知识,希望对你有一定的参考价值。

fr = open (\'win.txt\',mode=\'r\',encoding=\'utf-8\')
win=fr.read()
print(\'明文:\'+ win)
print(\'密文:\',end=\'\')
for c in win:
    print(chr(ord(c)+3),end=\'\')

fw = open(\'bili.txt\',mode =\'a\',encoding=\'utf-8\')
for c in win:
    print(chr(ord(c)+3,),end=\'\')
    fw.write(chr(ord(c)+3))

fr.close()
fw.close()

name1 = \'phone\'
name2 = \'ball\'
superman = [\'strong\',\'handsome\',\'tall\',\'humorous\']

print(superman[0])
print(superman[-2])
print(len(superman),superman)

superman.append(\'bay\')
superman.insert(1,\'jack\')

superman.pop(0)
superman.pop(-1)

superman[0]=\'pig\'

以上是关于文件操作的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

VSCode 如何操作用户自定义代码片段(快捷键)

代码片段 - Golang 实现集合操作

Apollo Codegen 没有找到生成代码的操作或片段

VSCode自定义代码片段——.vue文件的模板

操作栏标签片段中的片段?