第二课 parts

[b]20101020 第二课 part 1 recite[/b]
words preview:
hike,turmoil,rein,estate,inflation,commodity,plung


topic: China interest-rate hike causes turmoil

The center bank's move is aimed at reining in an unbridled (real) estate market (and inflation) in China.The move sends stocks and commodity price(s) plunging in(around)
the globe and raises concern (new concerns) about U.S. recovery.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[b]20101021 第二课 part 2 recite[/b]

burger, not buger
unbridled, not unbridle


---------- Forwarded message ----------
From: surfingForRest
To: yefishskivvy
Subject: 20101021 第二课 part 2 recite


words preview:
buger,unbridle,bridle,locomotive,chug,batter,overheated,ripple,

in common use:
rising inflation: use rising
rate increases: use increases

my attetion:
China's central bank , not Chinese central bank


Reporting from Washington and Beijing ---A surprise interest-rate hike by China raised the prospect Tuesday that the world's locomotive will begin chugging at a lower speed--A move battered stocks and commodity prices around the globe and raised fresh uncertainties [color=orange]about[/color](over) continued recovery in the U.S. and other developed nations.


The immediate aim of the action by China's central bank was to cool the nation's overheated real estate market and rising inflation.With more rate [color=red]raised[/color](increases) expected,it could slow the overall growth of the world's second-largest economy.

But any slowing in China will ripple abroad, creating new problems for already-struggling American businesses and workers.Much the same is likely in Europe and many other parts of the global economy.

~~~~~~~~~~~~~~~~~~~~
[b]20101026 第二课 part3 recite[/b]

words preview:
snapshot,snap,nap,fiscal,monetary,friction,deficit,allegation,subsidize,exporter,importer,manufacture,manufacturer,chore,chores,whip,
inventory,asterisk,marvel,boldness,confession,fancy, confirmation details

phrases:
marvel at, stretch out

sentences:
She's whipping the eggs.
Word on the street is that you're nothing more than a zero, or nothing at all.
I'm here! I'm real! So you think I'm noting, just dirt under you feet?


Get a daily snapshot of market numbers and trends,delivered right to your mobile phone.Text BUSINESS to 52996.

Although the U.S. economy's troubles are much bigger than China's fiscal policies, Simon Johnson, an MIT professor and former chief economist [color=red]in[/color](at) the International Monetary Fund, said the latest step by the People's bank of China "doesn't address the core of[color=red] the[/color](these) [economic] imbalances."

Friction has been increasing between the two nations over the widening trade deficit and allegations by the U.S. manufacturers that China manuplates its currency and unfairly subsidizes its exporters to maintain a price advantage.

"It certainly doesn't reduce the tension," Johnson said of Tuesday rate hike."I would suggest it's not helpful."
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[b]20101027 第二课 part4 recite[/b]

words preview:
stir,tension,decelerate,industrialized,tepid,deflation<->inflation,superficial,fancy,
fantasy,goose,geese,rot,aeronautical,hiking,hike


The effect will be felt sharply in nearby Asian economies that have become increasingly dependent on the Middle Kingdom's markets and production base.But a decelerating Chinese economy may ultimately hit harder in the U.S. and other industrialized conuntries.

Their recovery from the Greate Recession has been slower and many are still struggling with tepid growth, high unemployment and the threat of deflation, rather than inflation.

"We want China to consume more, but the latest move would do the opposite," said Sung Wo Sohn, an economist at Cal state Channel Islands. Everyone wants to grow economy through exports. But exports to China won't be as robust.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[b]20101028 第二课 part5 recite[/b]

words preview:
Dow,copper,zinc,investor,sought(seek的过去式和过去分词),greenback,benchmark,modest,modestly,inflows,boost,
elementary,rectangle

phrases:
exchang rate(汇率),boost the currency

pay attention to:
1. economy's troubles 和 economic imbalances,什么时候用所有格,什么时候用形容词,体会:是谁的东西用所胡格,具有什么性用形容词。
2. Johnson said of Tuesday's rate hike


The Dow index dropped more than 200 points during the day largely on the news from China before closing down 165, or 1.5%,at 10979.Prices fell for oil, copper, zinc and other commodities, while the dollar strenhthened as investors sought the safety of the greenback.


The quarter-point rate increase will allow Chinese consumers to get bigger returns on their savings;the one-year deposit rate will go to 2.5% and benchmark lending rate to 5.56%.


For the Chinese, "This is a right direction," said Macheal Pettis,a professor at Peking University's Guanghua school of management."In the long term, they should do more.But like the exchange rate,you can't change it quickly or there will be financial distress.


While China has allowed the yuan to appreciate modestly in recent months, some analysts said Tuesday's interest rate hike may give Beijing reason to delay further strengthening because higher interest rate should help attract more capital inflows that could eventually boost the currency.

~~~~~~~~~~~~~~
[b]20101103 words[/b]

words:
cowpoke,
tedious,
rustle,
a grub in an apple,to grub up the soil,
She is not clever,but she is painstaking.
She is always painstakingly at her books.
It narrows down the results for us.
The asterisk refers the reader to a footnote.
He sneaked away in the middle of the meeting.
interpret,
He became skilled in several tribal lingoes.
本文详细介绍了如何利用Python语言结合MySQL数据库开发一个学生管理系统。通过这一过程,读者不仅能够掌握系统设计的基本思路,还能学习到如何使用Python进行数据库操作。该系统涵盖了用户界面设计、数据验证以及数据库的增删改查等多个关键环节。 Python作为一种高级编程语言,以简洁易懂著称,广泛应用于数据分析、机器学习和网络爬虫等领域,同时也非常适合用于快速开发数据库管理应用。MySQL是一个广泛使用的开源关系型数据库管理系统,具有轻量级、高性能、高可靠性和良好的编程语言兼容性等特点,是数据存储的理想选择。在本系统中,通过Python的pymysql库实现了与MySQL数据库的交互。 pymysql是一个Python第三方库,它允许程序通过类似DB-API接口连接MySQL数据库,执行SQL语句并获取结果。在系统中,通过pymysql建立数据库连接,执行SQL语句完成数据的增删改查操作,并对结果进行处理。 系统采用命令行界面供用户操作。程序开始时,提示用户输入学生信息,如学号、姓名和各科成绩,并设计了输入验证逻辑,确保数据符合预期格式,例如学号为1至3位整数,成绩为0至100分的整数。 数据库设计方面,系统使用名为“test”的数据库和“StuSys”表,表中存储学生的学号、姓名、各科成绩及总成绩等信息。通过pymysql的cursor对象执行SQL语句,实现数据的增删改查操作。在构建SQL语句时,采用参数化查询以降低SQL注入风险。 系统在接收用户输入时进行了严格验证,包括正则表达式匹配和数字范围检查等,确保数据的准确性和安全性。同时,提供了错误处理机制,如输入不符合要求时提示用户重新输入,数据库操作出错时给出相应提示。 在数据库操作流程中,用户可以通过命令行添加学生信息或删除记录。添加时会检查学号是否重复以避免数据冲突,删除时需用户确认。通过上述分析,本文展示了从
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值