文件操作
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\'
以上是关于文件操作的主要内容,如果未能解决你的问题,请参考以下文章