Random Inflation
January, the Labor Department said,
everything from rent to cigarettes —
downward trend: it fell 0.1 percent in
when to raise the crucial short-term
benchmark interest rate, for instance —
normalize lending! The cost of living
increasing only 0.2 percent! A closely
January, the first decrease since 1982.
scaling back emergency measures to
consumer prices suggested that
were still a way off! A report on
government data on Friday reinforced
food and fuel costs underscored the
extraordinarily low interest rates.
That should ease some of the pressure
watched measure that excludes volatile
inflation appeared to be largely in
with the price of a variety of goods —
tighten monetary policy — raising the
check, despite a period of
support the economy, the latest
the notion that more drastic efforts to
on Fed policy makers as they consider
in the United States remained steady in
While the Federal Reserve has begun
interest rate and take smaller steps to
Source text: U.S. Inflation Report Gives Fed Breathing Room on Rates, The New York Times
Python code:
import sys
import random
all_lines = list()
for line in sys.stdin:
line = line.strip()
line = line.replace('. ', '! ')
all_lines.append(line)
random.shuffle(all_lines)
for line in all_lines:
print line