哈利波特大结局之3

3[@more@]

in his red eyes. “Will the Ministry have fallen by next Saturday?”

Once again, all heads turned. Yaxley squared his shoulders.

“My Lord, I have good news on that score. I have – with difficulty, and after great

effort – succeeded in placing an Imperius Curse upon Pius Thicknesse.”

Many of those sitting around Yaxley looked impressed; his neighbor, Dolohov, a

man with a long, twisted face, clapped him on the back.

“It is a start,” said Voldemort. “But Thicknesse is only one man. Scrimgeour must

be surrounded by our people before I act. One failed attempt on the Minister’s life will

set me back a long way.”

“Yes – my Lord, that is true – but you know, as Head of the Department of

Magical Law Enforcement, Thicknesse has regular contact not only with the Minister

himself, but also with the Heads of all the other Ministry departments. It will, I think, be

easy now that we have such a high-ranking official under our control, to subjugate the

others, and then they can all work together to bring Scrimgeour down.”

“As long as our friend Thicknesse is not discovered before he has converted the

rest,” said Voldemort. “At any rate, it remains unlikely that the Ministry will be mine

before next Saturday. If we cannot touch the boy at his destination, then it must be done

while he travels.”

“We are at an advantage there, my Lord,” said Yaxley, who seemed determined to

receive some portion of approval. “We now have several people planted within the

Department of Magical Transport. If Potter Apparates or uses the Floo Network, we shall

know immediately.”

“He will not do either,” said Snape. “The Order is eschewing any form of

transport that is controlled or regulated by the Ministry; they mistrust everything to do

with the place.”

“All the better,” said Voldemort. “He will have to move in the open. Easier to

take, by far.”

Again, Voldemort looked up at the slowly revolving body as he went on, “I shall

attend to the boy in person. There have been too many mistakes where Harry Potter is

concerned. Some of them have been my own. That Potter lives is due more to my errors

than to his triumphs.”

The company around the table watched Voldemort apprehensively, each of them,

by his or her expression, afraid that they might be blamed for Harry Potter’s continued

existence. Voldemort, however, seemed to be speaking more to himself than to any of

them, still addressing the unconscious body above him.

“I have been careless, and so have been thwarted by luck and chance, those

wreckers of all but the best-laid plans. But I know better now. I understand those things

that I did not understand before. I must be the one to kill Harry Potter, and I shall be.”

At these words, seemingly in response to them, a sudden wail sounded, a terrible,

drawn-out cry of misery and pain. Many of those at the table looked downward, startled,

for the sound had seemed to issue from below their feet.

“Wormtail,” said Voldemort, with no change in his quiet, thoughtful tone, and

without removing his eyes from the revolving body above, “have I not spoken to you

about keeping our prisoner quiet?”

“Yes, m-my Lord,” gasped a small man halfway down the table, who had been

sitting so low in his chair that it appeared, at first glance, to be unoccupied. Now he

scrambled from his seat and scurried from the room, leaving nothing behind him but a

curious gleam of silver.

“As I was saying,” continued Voldemort, looking again at the tense faces of his

followers, “I understand better now. I shall need, for instance, to borrow a wand from one

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10655044/viewspace-930359/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/10655044/viewspace-930359/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
资源包主要包含以下内容: ASP项目源码:每个资源包中都包含完整的ASP项目源码,这些源码采用了经典的ASP技术开发,结构清晰、注释详细,帮助用户轻松理解整个项目的逻辑和实现方式。通过这些源码,用户可以学习到ASP的基本语法、服务器端脚本编写方法、数据库操作、用户权限管理等关键技术。 数据库设计文件:为了方便用户更好地理解系统的后台逻辑,每个项目中都附带了完整的数据库设计文件。这些文件通常包括数据库结构图、数据表设计文档,以及示例数据SQL脚本。用户可以通过这些文件快速搭建项目所需的数据库环境,并了解各个数据表之间的关系和作用。 详细的开发文档:每个资源包都附有详细的开发文档,文档内容包括项目背景介绍、功能模块说明、系统流程图、用户界面设计以及关键代码解析等。这些文档为用户提供了深入的学习材料,使得即便是从零开始的开发者也能逐步掌握项目开发的全过程。 项目演示与使用指南:为帮助用户更好地理解和使用这些ASP项目,每个资源包中都包含项目的演示文件和使用指南。演示文件通常以视频或图文形式展示项目的主要功能和操作流程,使用指南则详细说明了如何配置开发环境、部署项目以及常见问题的解决方法。 毕业设计参考:对于正在准备毕业设计的学生来说,这些资源包是绝佳的参考材料。每个项目不仅功能完善、结构清晰,还符合常见的毕业设计要求和标准。通过这些项目,学生可以学习到如何从零开始构建一个完整的Web系统,并积累丰富的项目经验。
根据提供的引用内容,我们可以了解到《哈利波特》是一部关于哈利、赫敏、罗恩等人在大法师邓布利多的帮助下,使用魔法抵抗伏地魔的故事。同时,根据引用和引用,我们可以使用Python对小说中的人物名字和出现频率进行统计和分析。 以下是Python代码示例: 1. 统计人物名字TOP20的词语 ```python import jieba import pandas as pd from collections import Counter from pyecharts import Bar # 读取小说文本 with open('harry_potter.txt', 'r', encoding='utf-8') as f: text = f.read() # 使用jieba分词 words = jieba.lcut(text) # 统计人物名字出现的次数 names = ['哈利', '赫敏', '罗恩', '邓布利多', '马尔福', '斯内普', '小天狼星'] names_count = Counter([word for word in words if word in names]) # 绘制柱状图 bar = Bar('主要人物Top20', background_color='white', title_pos='center', title_text_size=20) x = names_count.most_common(20) bar.add('', [i[0] for i in x], [i[1] for i in x], xaxis_interval=0, xaxis_rotate=30, is_label_show=True) bar.render() ``` 2. 统计整部小说出现最多的词语TOP15 ```python import jieba import pandas as pd from collections import Counter # 读取小说文本 with open('harry_potter.txt', 'r', encoding='utf-8') as f: text = f.read() # 使用jieba分词 words = jieba.lcut(text) # 统计词语出现的次数 words_count = Counter(words) # 去除停用词 stopwords = pd.read_csv('stopwords.txt', index_col=False, quoting=3, sep='\t', names=['stopword'], encoding='utf-8') words = [word for word in words if word not in stopwords] # 统计出现最多的词语TOP15 top15 = words_count.most_common(15) print(top15) ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值