This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author starz
Recipients starz
Date 2009-08-15.02:21:08
SpamBayes Score 4.773898e-08
Marked as misclassified No
Message-id <1250302870.91.0.18677691598.issue6708@psf.upfronthosting.co.za>
In-reply-to
Content
# ------ SOURCE -------
# cheerleading program
word = raw_input("Who do you go for? ")

for letter in word:
    call = "Gimme a " + letter + "!"
    print (call)
    print (letter) + "!"

print( "What does that spell?")
print( word + "!")

# ------- end source -------

## within python.help()
## --------------------
help> raw_input()
no Python documentation found for 'raw_input()'

help>

### --- run from O/S ---

C:\Program Files\OpenOffice.org 2.0\program\python3.1>python 
PYsource\test3.py
Traceback (most recent call last):
  File "PYsource\test3.py", line 22, in <module>
    word = raw_input("Who do you go for? ")
NameError: name 'raw_input' is not defined

C:\Program Files\OpenOffice.org 2.0\program\python3.1>
History
Date User Action Args
2009-08-15 02:21:11starzsetrecipients: + starz
2009-08-15 02:21:10starzsetmessageid: <1250302870.91.0.18677691598.issue6708@psf.upfronthosting.co.za>
2009-08-15 02:21:09starzlinkissue6708 messages
2009-08-15 02:21:09starzcreate