python while 学习

while True:
    reply = input('please input:')
    if reply == 'stop':
        break
    else:
        print (reply.upper())
View Code
原文地址:https://www.cnblogs.com/lxs1314/p/7845225.html