Return to Snippet

Revision: 9314
at October 30, 2008 02:13 by nickleeh


Initial Code
while True:
	reply = raw_input('Enter text, [tpye "stop" to quit]: ')
	if reply == 'stop': break
	print reply.upper()

Initial URL


Initial Description


Initial Title
Convert the input text to upper case

Initial Tags
python

Initial Language
Python