/ Published in: Python
Expand |
Embed | Plain Text
while True: reply = raw_input('Enter text, [tpye "stop" to quit]: ') if reply == 'stop': break print reply.upper()
You need to login to post a comment.
while True: reply = raw_input('Enter text, [tpye "stop" to quit]: ') if reply == 'stop': break print reply.upper()
You need to login to post a comment.