2017python学习的第三天文件的操作

这个是一首歌用来做文件模版的

Somehow, it seems the love I knew was always the most destructive kind
不知为何,我经历的爱情总是最具毁灭性的的那种
Yesterday when I was young
昨日当我年少轻狂
The taste of life was sweet
生命的滋味是甜的
As rain upon my tongue
就如舌尖上的雨露
I teased at life as if it were a foolish game
我戏弄生命 视其为愚蠢的游戏
The way the evening breeze
就如夜晚的微风
May tease the candle flame
逗弄蜡烛的火苗
The thousand dreams I dreamed
我曾千万次梦见
The splendid things I planned
那些我计划的绚丽蓝图
I always built to last on weak and shifting sand
但我总是将之建筑在易逝的流沙上
I lived by night and shunned the naked light of day
我夜夜笙歌 逃避白昼赤裸的阳光
And only now I see how the time ran away
事到如今我才看清岁月是如何匆匆流逝
Yesterday when I was young
昨日当我年少轻狂
So many lovely songs were waiting to be sung
有那么多甜美的曲儿等我歌唱
So many wild pleasures lay in store for me
有那么多肆意的快乐等我享受
And so much pain my eyes refused to see
还有那么多痛苦 我的双眼却视而不见
I ran so fast that time and youth at last ran out
我飞快地奔走 最终时光与青春消逝殆尽
I never stopped to think what life was all about
我从未停下脚步去思考生命的意义
And every conversation that I can now recall
如今回想起的所有对话
Concerned itself with me and nothing else at all
除了和我相关的 什么都记不得了
The game of love I played with arrogance and pride
我用自负和傲慢玩着爱情的游戏
And every flame I lit too quickly, quickly died
所有我点燃的火焰都熄灭得太快
The friends I made all somehow seemed to slip away
所有我交的朋友似乎都不知不觉地离开了
And only now I‘m left alone to end the play, yeah
只剩我一个人在台上来结束这场闹剧
Oh, yesterday when I was young
噢 昨日当我年少轻狂
So many, many songs were waiting to be sung
有那么那么多甜美的曲儿等我歌唱
So many wild pleasures lay in store for me
有那么多肆意的快乐等我享受
And so much pain my eyes refused to see
还有那么多痛苦 我的双眼却视而不见
There are so many songs in me that won‘t be sung
我有太多歌曲永远不会被唱起
I feel the bitter taste of tears upon my tongue
我尝到了舌尖泪水的苦涩滋味
The time has come for me to pay for yesterday
终于到了付出代价的时间 为了昨日
When I was young
当我年少轻狂

yestherday

 1 #!/user/bin/env python
 2 # -*- coding:utf-8 -*-
 3 __author__ = ‘Howie‘
 4
 5
 6 index = 0
 7 with open(‘yestherday‘,‘r‘,encoding=‘utf-8‘) as data:
 8     print(data.readline(),data.tell())
 9     data.seek(10)
10     print(data.readline(),data.tell())
11
12
13
14
15
16
17 ‘‘‘
18     for line in data:
19         index +=1
20         if index <= 9 or index >=13:
21             print(‘----不打印第%s行------‘%index)
22             continue
23         print(index,line.strip())
24
25 ‘‘‘
26
27
28 ‘‘‘
29     for index,line in enumerate(data.readlines()):
30         if index <= 9 or index >=13:
31             print(‘----不打印第%s行------‘%index)
32             continue
33         print(index,line.strip())
34 ‘‘‘

文件的一些操作

时间: 2024-10-25 13:58:35

2017python学习的第三天文件的操作的相关文章

java 学习笔记之 流、文件的操作

ava 学习笔记之 流.文件的操作 对于一些基础的知识,这里不再过多的解释, 简单的文件查询过滤操作 package com.wfu.ch08; import java.io.File; import java.io.FilenameFilter; public class Test1 { public static void main(String[] args) { File file=new File("F:\\2017-2018-1\\javase"); // //获取该目录下

python学习笔记——(三)文件操作

·集合操作及其相应的操作符表示集合中没有插入,只有添加,因为毕竟无序 #!/usr/bin/env python # -*- coding:utf-8 -*- # Author:Vergil Zhang list_1 = [1, 4, 5, 7, 3, 6, 7, 9] list_1 = set(list_1) print(list_1, type(list_1)) list_2 = set([2, 6, 0, 66, 22, 8]) print(list_1,list_2) #交集 print

python(三)一个文件读写操作的小程序

我们要实现一个文件读写操作的小程序 首先我们有一个文件 我们要以"============"为界限,每一个角色分割成一个独立的txt文件,按照分割线走的话是分成 xiaoNa_1.txt xiaoBing_1.txt xiaoNa_2.txt xiaoBing_2.txt 这样格式的四个文件 下面上代码: #定义一个保存文件的函数 def save_file(xiaoNa,xiaoBing,count): file_name_xiaoBing = 'xiaoBing_'+str(cou

2017python学习的第三天函数

函数就其实可以看作是一个被定义变量 只不过变量定义在内存里面的是一些值 而函数被定义在内存里面就是一些要执行的语句的字符串 函数需要被调用的时候才会运行. 局部变量和全局变量 局部变量就是在函数体内的变量,他和全局表里最大的区别就是作用域 局部变量的作用域就是在函数体内的,而全局变量就全局作用的

c++学习笔记01-输入输出流&amp;&amp;文件输入输出操作

const int size=50等于#define size 50 字符串默认以0结尾: 一.输入输出流 cin.get()会从输入中取走一个字符: cin.peek()会从输入中检测第一个字符: cin.ignore(7)忽略七个字符: cin.getline(buf,10)获取buf的十个字符: cin.read(buf,20)只接受十个字符: cin.gcount()获取字符数目: cout.precision()设置精确度: cout.write(buf,20)输出buf中的20个字符

Android(三)文件流操作读写

1.将字符串写入文件流中.使用的是getFilesDir().存到手机内存中. File file = new File(getFilesDir() + "/info.txt"); try { OutputStream out = new FileOutputStream(file); out.write(text.getBytes()); out.close(); } catch (Exception e) { // TODO Auto-generated catch block e

Node.js学习笔记(5)--文件简单操作

说明(2017-5-3 11:53:45): 1. foo.js 1 var fs = require("fs"); 2 var documents = []; 3 fs.readdir("./段虹",function(err,files){ 4 5 for(let i = 0; i < files.length; i++){ 6 // var filename = files[i]; 7 fs.stat("./段虹/" + files[i

jQuery学习笔记(三)——DOM节点操作

一.创建节点 var box = $(<div></div>) 二.插入节点 1.内部插入 $('#box').append(box) 将box插入内部后面 $('#box').appendTo(box) 移入到box内部后面 $('#box').prepend(box) 将box插入内部前面 $('#box').prependTo(box) 移入到box内部前面 2.外部插入 $('#box').after(box) 将box插入到外部后面 $('#box').before(bo

python第三天 文件的操作习题

文件内容如下:以tomcat的server.xml文件为例 1.查找 Server下有多少个<Listener>节点,并打印出来 2.在文件我末尾增加一个 <Service> <Host name="127.0.0.1" appBase="java" unpackWARs="false" autoDeploy="false"> </Service>,要求这个service 在se