/ Published in: Python
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
while True: reply = raw_input('Enter text, [tpye "stop" to quit]: ') if reply == 'stop': break print reply.upper()