Sky Blue And Black

这首诗般的歌曲出现在《Friends》第一季中,歌词描绘了一幅温馨浪漫的画面,传达了深情的承诺。作者巧妙地将日常景象融入歌词之中,表达了对过去美好时光的怀念。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

《Friends》 第一季的插曲




作者还是个诗人。


In the calling out to one another
Of the lovers up and down the strand
In the sound of the waves and the cries
Of the seagulls circling the sand
In the fragments of the songs
Carried down the wind from some radio
In the murmuring of the city in the distance
Ominous and low

在海滩上情人互相之间的呼喊声中
在涛声和天空盘旋的海鸥叫声中
在随风飘来的收音机断断续续的歌声中
在远处城市不详和阴沉的呢喃中

I hear the sound of the world where we played
And the far too simple beauty
Of the promises we made

我听到了我们曾经的两人世界
那些许下的诺言是如此单纯美丽

If you ever need holding
Call my name, I'll be there
If you ever need holding
And no holding back, I'll see you through
Sky blue and black

如果你需要拥抱,只要呼唤我,我就会出现
如果你需要温暖,我会帮你度过难关
这是一片你我共同的天空





注:转载自:http://hi.baidu.com/creazy_heart/item/e337ee1d5dc697787b5f255c



import tkinter as tk from tkinter import messagebox import matplotlib.pyplot as plt import numpy as np subjects = ['C语言', 'C语言', '高数', '英语', 'c++', '体育'] scores = [85, 85, 78, 88, 90] def zf(): plt.bar(subjects, scores, color='skyblue') plt.title('直方图') plt.xlabel('科目') plt.ylabel('分数') for i in range(len(subjects)): plt.text(i, scores[i], scores[i], ha='center', va='bottom') plt.show() def zx(): plt.plot(subjects, scores, marker='o', linestyle='-', color='skyblue') plt.title('折线图') plt.xlabel('科目') plt.ylabel('分数') for i in range(len(subjects)): plt.text(subjects[i], scores[i], scores[i], ha='center', va='bottom') plt.show() def ct(): plt.rcParams['figure.dpi'] = 300 plt.rcParams['font.sans-serif'] = ['SimHei'] plt.rcParams['axes.unicode_minus'] = False plt.bar(subjects, scores, color='skyblue', edgecolor='black') plt.title('条形图') plt.xlabel('科目') plt.ylabel('分数') for i in range(len(subjects)): plt.text(i, scores[i], scores[i], ha='center', va='bottom') plt.show() def mj(): plt.rcParams['figure.dpi'] = 300 plt.rcParams['font.sans-serif'] = ['SimHei'] plt.rcParams['axes.unicode_minus'] = False x = np.arange(len(subjects)) plt.fill_between(x, scores, color='skyblue', alpha=0.7) plt.xticks(x, subjects) plt.title('面积图') plt.xlabel('科目') plt.ylabel('分数') for i in range(len(subjects)): plt.text(x[i], scores[i], scores[i], ha='center', va='bottom') plt.show() def yx(): plt.rcParams['figure.dpi'] = 300 plt.rcParams['font.sans-serif'] = ['SimHei'] plt.rcParams['axes.unicode_minus'] = False plt.pie(scores, labels=subjects, autopct='%1.1f%%', startangle=90) plt.title('各科目分数占比饼图') plt.axis('equal') plt.show() def cf(subjects, scores): new_subjects = [] new_scores = [] for i in range(len(subjects)): if subjects[i] not in new_subjects: new_subjects.
03-31
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值