I\'m trying to read in the following text from the command-line in Python 3 (copied verbatim, newlines and all):
lcbeika rraobmlo grmfina ontccep emrlin tsei
You can import sys and use the methods on sys.stdin for example:
import sys
sys.stdin
text = sys.stdin.read()
or:
lines = sys.stdin.readlines()
for line in sys.stdin: # Do something with line.