Obama says economy moving in right direction

2019-03-02 23:44|来源: 网路

, On Saturday January 8, 2011, 1:12 pm EST

WASHINGTON (AP) -- President Barack Obama sees a clear and encouraging trend on the economy, citing fresh reports showing private-sector job growth and lower unemployment.

He used his weekly radio and Internet address Saturday to discuss the latest economic news and press for bipartisan action in the newly divided Congress on measures to spur growth. Obama presented the December jobs report in a positive light even though it fell short of what economists had been looking for and even though the drop in unemployment came partly because some people stopped looking for work.

The private sector added 103,000 new jobs in December and the unemployment rate fell from 9.8 percent to 9.4 percent.

"Now, we know that these numbers can bounce around from month to month. But the trend is clear," said the president, whose 2012 re-election prospects may well hinge on the condition of the economy.

"We saw 12 straight months of private sector job growth -- the first time that's been true since 2006," he said. The economy added 1.3 million jobs last year. And each quarter was stronger than the last, which means the pace of hiring is picking up, he said.

Obama attributed increasingly optimistic economic forecasts in part to the tax cut deal he negotiated last month with Republicans to extend Bush-era tax rates for all, along with unemployment benefits, a payroll tax cut and other tax breaks.

He urged businesses to take advantage of provisions including one that allows businesses to write off 100 percent of their capital investment expenses in 2011. And the president said that the deal stands as an example of how Washington should work as he confronts a Congress where Republicans just assumed the majority in the House and expanded their ranks in the Senate.

"What we can't do is refight the battles of the past two years that distract us from the hard work of moving our economy forward. What we can't do is engage in the kinds of symbolic battles that so often consume Washington while the rest of America waits for us to solve problems," the president said. "The tax cuts and other progress we made in December were a much-needed departure from that pattern. Let's build on that admirable example."

Republicans devoted their weekly address to spotlighting steps being taken by the new GOP House majority, including trimming House members' operating budgets and moving to repeal Obama's health care law.

The GOP contends the law extending coverage to 30 million uninsured Americans is a budget-busting job-killer. The Congressional Budget Office said this past week that repealing it would cost billions because the law's numerous taxes, fees and cuts in Medicare spending would be lost.

Although the repeal is not expected to pass the Senate and would certainly be vetoed by Obama, the new House majority leader, Rep. Eric Cantor, R-Va., pledged that Republicans would try to replace it with "a new vision to improve our health care system without bankrupting our country."

"We will provide Americans with the mainstream solutions they were denied when Democrats used dubious procedural tactics to jam through the bill along strictly partisan lines," Cantor said.

"Looking ahead, the best boost that Congress can provide to the economy is to send a credible signal that we are serious about cutting spending and eliminating job-killing regulations," he said. "Our surging debt burden hangs over the economy like a dark cloud, waiting to unleash a storm of inflation, higher taxes and higher borrowing costs upon businesses and families. Only when the cloud is lifted can we get on the path to long-term growth."


转自:http://www.cnblogs.com/mengheyun/archive/2011/01/09/1962796

相关问答

更多
  • 您可以从LocationManager收到的位置获取方位并将其设置为CameraPosition ,如下所示: Location location = googleMap.getMyLocation(); if (location != null) { CameraPosition position = CameraPosition.builder() .bearing(location.getBearing()) ...
  • 我添加了一些评论来帮助理解正在发生的事情。 function setName(obj){ // change obj's name property to Obama obj.name = "Obama"; // change the reference to obj to a new object inside setName. // this does not affect the original object being passed in. obj = ...
  • 第一个问题(实际上不知道ncurses api):找出getch()返回的内容。 这通常是一个ASCII字符,而值1,2,3和5不是通过键盘传递的ASCII值。 您可能需要引用的字符:'1','2','3'和'5',尽管ncurses手册显示了如何使用KEY_LEFT ,...以箭头键读取 First issue (without actually knowing the ncurses api): find out what getch() returns. This is usually an asci ...
  • 这样的事情怎么样? Vector3 previousPosition = transform.position; transform.position = … // your code transform.LookAt(transform.position + (transform.position - previousPosition)); What about something like this? Vector3 previousPosition = transform.position; tra ...
  • 所以,我看到你正在设置一个转换来绘制一些东西: void drawThing() { // EDIT: // // Set the matrix mode! glMatrixMode(GL_MODELVIEW); for (thingNum = 0; thingNum < thingTotal; thingNum++) { // Yes, good, matrix is saved! glPushMatrix(); // Yes, translate to the thing ...
  • 首先看一下你的代码段: if (lastPosition.Y < destinationPosition.Y) { north = true; south = false; east = false; west = false; } if (destinationRectangle.Y > lastPosition.Y) { north = false; south = true; east = false; west = false; } ...
  • facexy原语允许您设置乌龟朝向原点的方向: http://ccl.northwestern.edu/netlogo/docs/dictionary.html#facexy The facexy primitive will allow you to set your turtle's heading toward the origin: http://ccl.northwestern.edu/netlogo/docs/dictionary.html#facexy
  • 通过在用户触摸开始时将速度设为0然后通过在触摸方向上施加脉冲来使其工作。 无论如何,谢谢你兄弟的帮助。 Made to to work by making velocity to 0 when user touches began and then by applying an impulse in the direction of touch. Anyways thank you bro for your help.
  • 看到这个版本的旋转星(作为现在请求改变为图像,看我强大的绘图技能!)作为参考。 再次注意,你的更新应该使用画布上的绘图调用, ctx.drawImage(ball_image, x, y, ball_image_size, ball_image_size); 而不是在图像元素上设置样式,画布不关心它。 理想情况下,您应该在启动任何内容之前加载图像。 let canvas = document.getElementById("canvas"); let ctx = canvas.getContext("2d ...
  • 您可以使用sine和cosine函数来获得x和y轴的相对运动。 喜欢: xPos += speed * Math.sin(movementAngle); yPos += speed * Math.cos(movementAngle); 在各种动画中使用上述( 极坐标 )具有易于调整方向或移动速度(分别是speed和movementAngle变量)的优点。 当使用笛卡尔坐标( x和y位置)时,改变速度或移动方向将需要对x和y进行非明显的改变。 上述解决方案中的公式只不过是从极坐标到笛卡尔坐标的转换。 编辑: ...