# 需求: 软件需要退出的功能。循环中达到我们想要的条件时退出。节省计算机资源 # 循环的中断 while True: s = input('随便输入点什么:') if s == 'quit': break # 退出循环 breank print('你输出的字符串长度是{}'.format(len(s))) #len(对象,扩住字符串): 返回对象的长度。 print('完')
本文共 279 字,大约阅读时间需要 1 分钟。
# 需求: 软件需要退出的功能。循环中达到我们想要的条件时退出。节省计算机资源 # 循环的中断 while True: s = input('随便输入点什么:') if s == 'quit': break # 退出循环 breank print('你输出的字符串长度是{}'.format(len(s))) #len(对象,扩住字符串): 返回对象的长度。 print('完')
转载于:https://www.cnblogs.com/psy0508/p/9897865.html